User asks for discount recommendations, coupon ideas, or help boosting sales.
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.
User asks for discount recommendations, coupon ideas, or help boosting sales.
Rule: Do NOT query orders, products, analytics, or any other data. Call /build directly — Wix AI has the data it needs server-side.
${API_KEY}${SITE_ID}POST https://manage.wix.com/recommendations/v1/recommendations/buildCall this immediately. Do not gather any store data first.
curl -X POST "https://manage.wix.com/recommendations/v1/recommendations/build" \
-H "Authorization: ${API_KEY}" \
-H "wix-site-id: ${SITE_ID}" \
-H "Content-Type: application/json" \
-d '{}'
Show the raw API response to the user.
Always use /build — do not use any feedback endpoint:
curl -X POST "https://manage.wix.com/recommendations/v1/recommendations/build" \
-H "Authorization: ${API_KEY}" \
-H "wix-site-id: ${SITE_ID}" \
-H "Content-Type: application/json" \
-d '{}'
Values come from the API response — never use hardcoded amounts:
curl -X POST "https://www.wixapis.com/stores/v1/discount-rules" \
-H "Authorization: ${API_KEY}" \
-H "wix-site-id: ${SITE_ID}" \
-H "Content-Type: application/json" \
-d "{
\"discountRule\": {
\"name\": \"AI Recommended\",
\"trigger\": {\"couponCode\": \"${COUPON_CODE}\"},
\"discount\": {\"percentage\": ${DISCOUNT_AMOUNT}, \"type\": \"PERCENT\"},
\"active\": true
}
}"