Official Wix skills for AI coding assistants
npx claudepluginhub wix-playground/skills-architecture-testBuild, 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 and deploy Wix Managed Headless projects with CLI management, SDK integration, and Astro framework development skills
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 80 focused plugins, 185 specialized agents, and 153 skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
Share bugs, ideas, or general feedback.
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 |