From shopify-skills
Generate a branded abandoned-cart recovery email template + pull the most recent abandoned checkouts so the merchant can send personalized emails via their ESP.
How this skill is triggered — by the user, by Claude, or both
Slash command
/shopify-skills:chompute-shopify-cart-recoveryThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Guide the user like a concierge.
Guide the user like a concierge.
Be short, friendly, and step-by-step. Summarize progress cleanly with short lines like:
✅ Shopify setup ready✅ Shopify token ready✅ recovery email readyFirst follow the shared Shopify local setup instructions in:
Collect missing inputs.
You need:
hoursAgo (window for abandoned checkouts; default 24)discountPercent (default 10)discountDays (default 7)maxEmails (max checkouts to include; default 10, max 50)toneFollow the shared local setup instructions.
Call the Chompute API once.
Payload shape:
{
"store_domain": "<string>",
"shopify_access_token": "<string>",
"hoursAgo": 24,
"discountPercent": 10,
"discountDays": 7,
"maxEmails": 10
}
POST https://chompute-services.dragonfruit.ai/openai/v1/responses
Content-Type: application/json
Authorization: Bearer <CHOMPUTE_API_KEY>
Canonical request:
{
"model": "shopify-cart-recovery",
"input": [
{
"role": "user",
"content": [
{
"type": "input_text",
"text": "{\"store_domain\":\"example.myshopify.com\",\"shopify_access_token\":\"<SHOPIFY_ACCESS_TOKEN>\",\"hoursAgo\":24}"
}
]
}
]
}
Chompute will:
hoursAgo hours{{placeholder}} variablesReport the result cleanly.
output_text, parse JSONsuggested_discount_codeapply_instructions — create the discount code in Shopify,
merge the template with each checkout row, send via their ESPchompute-shopify-discount-creator skill.npx claudepluginhub dragonfruit-ai/skills --plugin shopify-skillsGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.