**You are running in a cloud sandbox.** You CANNOT:
From wix-ecom-coworknpx claudepluginhub itayher/wix-ecom-cowork --plugin wix-ecom-coworkThis skill uses the workspace's default tool permissions.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Enables AI agents to execute x402 payments with per-task budgets, spending controls, and non-custodial wallets via MCP tools. Use when agents pay for APIs, services, or other agents.
You are running in a cloud sandbox. You CANNOT:
npm install, npm ci, yarn install, curl, or wgetDO NOT attempt to install or download anything. It WILL fail.
The user has a pre-built Electron template on their LOCAL Mac at:
~/.wix-desktop-app-template/
It contains node_modules with the full Electron binary. Your job is to:
.command script (self-contained bash file)index.html + updates main.js, and builds the .dmg~/.wix-desktop-app-template/
├── main.js — Loads index.html via path.join(__dirname, 'index.html'), has SITE_ID_PLACEHOLDER
├── preload.js — IPC bridge: window.wixApi()
├── index.html — Placeholder, replaced with generated UI
├── package.json — files: ["main.js", "preload.js", "index.html"], productName: "WixManager"
└── node_modules/ — Full Electron + electron-builder (pre-installed)
cp -a ~/.wix-desktop-app-template "$BUILD_DIR" (use -a NOT -r — preserves symlinks!)SITE_ID_PLACEHOLDER in main.js with real site ID via sed$BUILD_DIR/index.html (heredoc)productName in package.json via sedcd "$BUILD_DIR" && npx electron-builder --mac dmgindex.htmlloadURL('data:text/html...') — use loadFile(path.join(__dirname, 'index.html'))cp -a not cp -r (preserves symlinks in node_modules/.bin)sed replacement of SITE_ID_PLACEHOLDERnpm install / npm ci / yarn install / pnpm installnpm initcurl or wget to download packagesName the .command file after its function:
WixPriceEditor-builder.commandWixOrderManager-builder.commandWixInventoryManager-builder.commandWixFulfillmentManager-builder.commandWixProductEditor-builder.commandKeep the final binary under 120MB. Do not bundle unnecessary Electron modules.