rp-execute-setup

Verifies and provisions Wix site setup requirements before migration import.

Updated Apr 19, 2026
One-click install
npx skills add https://github.com/divinaarmuela/Content --skill rp-execute-setup-divinaarmuela
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: rp-execute-setup
Source: https://github.com/divinaarmuela/Content/tree/main/.claude/skills/replatform/resources/rp-execute-setup
Command: npx skills add https://github.com/divinaarmuela/Content --skill rp-execute-setup-divinaarmuela

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve? Before importing migrated content into a Wix site, required apps, collections, schemas, and permissions must exist and be verified. This Skill validates machine-readable setup artifacts against the target Wix environment and provisions missing pieces through official Wix APIs, preventing failed imports caused by missing prerequisites. ## Core Features & Use Cases - Setup Verification: Reads setup-plan.json, setup-requirements.json, and execution-manifest.json, then records pass/fail/blocked status per requirement in setup-verification.json. - Programmatic Provisioning: Installs Wix apps (Blog, Stores, Wix Data) via the App Installation API, creates native Wix Data collections, and mutes site notifications before any setup writes. - Dry-Run Safety: Reduces every setup step to a structured intent in dry-run mode without invoking live Wix API calls, and never writes before user approval of the execution plan. - Use Case: After generating a migration project from WordPress, run this Skill to confirm Wix Stores is installed with a V3 catalog, Wix Data is enabled, and required collections exist before starting the import. ## Quick Start Verify and provision the Wix setup requirements for my migration project using the setup artifacts in the migrations folder.

Frequently Asked Questions about rp-execute-setup

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I verify Wix site setup before a migration import?

Run the setup verification against the machine-readable artifacts setup-plan.json and setup-requirements.json in the migration project. Each requirement is checked against the target Wix site and recorded as passed, failed, or blocked in setup-verification.json.

How do I install Wix apps like Stores or Blog via API?

Use the App Installation API: check permission with the is-permitted-to-install endpoint, then POST to /apps-installer-service/v1/app-instance/install with the appDefId, site tenant ID, and install type. Ground appDefId values in the official Apps Created by Wix table to avoid installing the wrong app.

Why does Wix Stores fail after installation on a headless site?

Installing Wix Stores on a blank headless template can provision a V1 catalog, which V3 Stores primitives cannot write to. Check the catalog version with the read-only Catalog Versioning API; a V1_CATALOG result is a blocker requiring a replacement site scaffolded with the commerce template.

Can Wix Data collections be created without enabling Wix Code?

Yes. Installing the Wix Data app (appDefId e593b0bd-b783-45b8-97c2-873d42aacaf4) via the App Installation API enables native collection creation through POST /wix-data/v2/collections without the WDE0110 error or any code editor toggle.

What setup tasks cannot be automated through Wix APIs?

Only storage plan upgrades, external-system credential generation such as WordPress Application Passwords, and account-level billing are genuinely manual. All other setup items should be attempted through APIs before being marked manual or blocked.

Does setup provisioning run without user approval?

No. Verification is read-only and runs before the execution-plan gate, but all provisioning writes such as app installs and collection creation happen only after the user accepts the execution plan. Dry-run mode captures structured intents without any live Wix calls.