Help us improve
Share bugs, ideas, or general feedback.
From wix-ecom-cowork
Fetches AI-powered discount recommendations from Wix API and creates coupons using Stores API. Activates for discount ideas, coupons, or sales boosts.
npx claudepluginhub wix/wix-ecom-cowork --plugin wix-ecom-coworkHow this skill is triggered — by the user, by Claude, or both
Slash command
/wix-ecom-cowork:smart-discount-recommendationsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
User asks for discount recommendations, coupon ideas, or help boosting sales.
Manages Wix coupons and discounts via REST API: query active/expired/usage-based lists, create fixed-amount/percent-off types, detect conflicts, calculate margins.
Triages WooCommerce coupon performance by analyzing discount impact, revenue drivers, acquisition metrics, and effective costs using built-in analytics tools.
Configures Saleor promotions: catalog/order promotions, vouchers, manual discounts, gift cards, stacking rules. Guides GraphQL mutations for pricing setup.
Share bugs, ideas, or general feedback.
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
}
}"