Build and deploy Wix Managed Headless projects with CLI management, SDK integration, and Astro framework development skills
Inner skill — invoked by wix-headless-features-orchestrator. Implements a blog using the Wix Blog app with @wix/blog SDK, @wix/ricos for rich content, and RSS/sitemap support.
Use when scaffolding, configuring, building, previewing, or deploying a Wix Managed Headless project. Triggers: headless project setup, scaffold, wix dev, wix build, wix preview, wix release, wix connect, deploy, configure, environment variables, ship it, see my changes live.
Inner skill — invoked by wix-headless-features-orchestrator. Implements structured content pages using @wix/data for custom collections. Triggers: @wix/data, CMS, collections, dynamic content, portfolio, projects, work showcase, team, staff, directory, FAQ, knowledge base, resources, downloads, case studies, menu items.
Use when designing the visual identity, brand, and UI of a Wix Managed Headless site. Triggers: design my site, brand, style, redesign, restyle, change the look, colors, fonts, typography, visual, theme, dark mode, landing page design, make it look, aesthetic.
Use when adding any feature to a Wix Managed Headless project. Entry point for ALL feature requests — single or multiple. Triggers: add a form, add products, contact form, product catalog, implement the plan, wire up the site, coming from design skill, add features.
Executes bash commands
Hook triggers when Bash tool is used
External network access
Connects to servers outside your machine
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
A single repo containing multiple Wix AI skill plugins, using the marketplace pattern to support Claude Code, Cursor, and npx skills add.
.claude-plugin/marketplace.json # Plugin registry (Claude Code)
.cursor-plugin/marketplace.json # Plugin registry (Cursor)
plugins/
wix-cli/ # Plugin: Wix CLI app development
.claude-plugin/plugin.json
.cursor-plugin/plugin.json
.mcp.json
assets/logo.svg
skills/
wix-cli-orchestrator/ # 18 skills total
wix-cli-dashboard-page/
wix-cli-site-widget/
...
wix-headless/ # Plugin: Wix Managed Headless
.claude-plugin/plugin.json
.cursor-plugin/plugin.json
.mcp.json
hooks/hooks.json
skills/
shared/ # Headless-specific shared references
wix-headless-designer/ # 8 skills total
wix-headless-stores/
...
How it works: The root marketplace.json acts as a registry that points to self-contained plugins under plugins/. Each plugin has its own manifests, MCP config, and skills. Users install whichever plugins they need.
| Plugin | Skills | Description |
|---|---|---|
| wix-cli | 18 | Dashboard extensions, backend APIs, site widgets, service plugins, embedded scripts |
| wix-headless | 8 | Astro + React + Wix SDK — from business discovery to live deployment |
Register the marketplace, then install plugins individually:
/plugin marketplace add https://github.com/wix-playground/skills-architecture-test
Select which plugin to install:
/plugin install wix-cli
/plugin install wix-headless

In the Cursor Agent chat, type:
/add-plugin
Search for the plugin by name or provide the GitHub URL. Then connect the MCP server in Cursor Settings > Tools & MCP Servers.

Install all skills from both plugins:
npx skills add wix-playground/skills-architecture-test
Skills appear grouped by plugin — select the ones you need:
Wix Cli
[x] wix-cli-orchestrator
[x] wix-cli-dashboard-page
[ ] wix-cli-site-widget
...
Wix Headless
[x] wix-headless-designer
[x] wix-headless-stores
...
Install only a specific plugin's skills:
npx skills add wix-playground/skills-architecture-test/plugins/wix-cli
npx skills add wix-playground/skills-architecture-test/plugins/wix-headless
Install a single skill by name:
npx skills add wix-playground/skills-architecture-test --skill wix-cli-orchestrator

Some skills may be useful across multiple plugins (e.g., wds-docs for the Wix Design System). There are three approaches:
Each plugin is fully independent. If a skill is needed by both plugins, it's duplicated.
| Pros | Cons |
|---|---|
| Zero complexity — no build step, no config | Duplication if skills overlap |
| Each plugin works standalone | Changes to shared content must be updated in multiple places |
| Simple git history — each plugin is a plain directory |
Shared skills live in a shared/ directory and stay there. A build.sh script reads a config and updates each plugin's marketplace.json skills arrays to reference the shared location — no copying.
shared/ # Shared skills live here permanently
wds-docs/SKILL.md
plugins/
wix-cli/
plugin.yaml # Declares which shared skills this plugin uses
skills/ # Plugin-owned skills (unchanged)
wix-headless/
plugin.yaml
skills/
plugin.yaml example:
name: wix-cli
shared_skills:
- wds-docs
build.sh updates marketplace.json to include shared paths:
{
"name": "wix-cli",
"source": "./plugins/wix-cli",
"skills": [
"./skills/wix-cli-orchestrator/",
"../../shared/wds-docs/"
]
}
| Pros | Cons |
|---|---|
| Single source of truth — edit once | Requires build.sh to update manifests |
| No file duplication or copying | Shared skills live outside the plugin directory (unusual) |
No dist/ directory to keep in sync | Platform loaders must support paths outside plugin root |
| Lightweight — only JSON gets updated |
npx claudepluginhub wix-playground/skills-architecture-test --plugin wix-headlessBuild, manage, and deploy Wix sites and apps. Includes CLI development skills and Wix MCP server for site management, eCommerce, CMS, dashboard extensions, and more.
Build, manage, and deploy Wix sites and apps. Includes CLI development skills and Wix MCP server for site management, eCommerce, CMS, dashboard extensions, and more.
Claude Code skill pack for Webflow (24 skills)
Production-ready skills for managing Webflow CMS content, auditing site health, optimizing assets, and safely publishing changes
Create skills from documentation folders and project codebases. Review, test, and package Anthropic Agent Skills for Claude.ai and Claude Code. 13 commands including from-docs, from-project, beginner tutorial, interactive wizard, templates, quality auditing, and distribution packaging.
Scaffold Cloudflare Workers, Hono APIs, D1/Drizzle schemas, D1 migration workflows, full-stack Vite+Workers apps, and TanStack Start SSR dashboards.
Enhances Claude for developing full-stack web apps with Wasp (React, Node.js, Prisma)