Install
$ agentstack add skill-40rty-ai-shopify-admin-skills-shopify-admin-churn-risk-scorer ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
About
Purpose
Predicts which customers are at risk of churning by analyzing their purchase patterns against their historical buying frequency. Calculates an expected next-purchase date for each repeat customer, then scores churn risk based on how overdue they are. Read-only — no mutations.
Prerequisites
- Authenticated Shopify CLI session:
shopify store auth --store --scopes read_orders,read_customers - API scopes:
read_orders,read_customers
Parameters
| Parameter | Type | Required | Default | Description | |-----------|------|----------|---------|-------------| | store | string | yes | — | Store domain | | daysback | integer | no | 365 | Historical window for purchase pattern analysis | | minorders | integer | no | 2 | Minimum orders to calculate purchase interval (need 2+ for frequency) | | risk_threshold | float | no | 1.5 | Multiplier of avg purchase interval before flagging as at-risk | | format | string | no | human | Output format: human or json |
Safety
> ℹ️ Read-only skill — no mutations are executed. Safe to run at any time.
Churn Risk Scoring Model
For each customer with min_orders or more purchases:
- Average Purchase Interval (API) = total days between first and last order / (order_count - 1)
- Days Since Last Order (DSLO) = today - lastorderdate
- Overdue Ratio = DSLO / API
- Churn Risk Score (0-100):
- Overdue ratio ≤ 1.0 → Score 0-20 (Active)
- Overdue ratio 1.0–1.5 → Score 20-50 (Cooling)
- Overdue ratio 1.5–2.5 → Score 50-80 (At Risk)
- Overdue ratio > 2.5 → Score 80-100 (Likely Churned)
- Customer Lifetime Value (CLV) = total spend / customer age in years × expected remaining years
Workflow Steps
- OPERATION:
orders— query
Inputs: query: "created_at:>=''", first: 250, select createdAt, totalPriceSet, customer { id, email, firstName, lastName }, pagination cursor Expected output: All orders with customer association
- Group orders by customer, calculate per customer:
- Order dates (sorted chronologically)
- Average purchase interval
- Days since last order
- Total spend
- Order count
- OPERATION:
customers— query (enrichment)
Inputs: Customer IDs for at-risk and likely-churned segments Expected output: Contact details, tags, total spend
- Calculate churn risk score and classify into segments
- Estimate revenue at risk = sum of (annualspend × churnprobability) for at-risk customers
GraphQL Operations
# orders:query — validated against api_version 2025-01
query OrdersForChurnAnalysis($query: String!, $after: String) {
orders(first: 250, after: $after, query: $query) {
edges {
node {
createdAt
totalPriceSet { shopMoney { amount currencyCode } }
customer {
id
email
firstName
lastName
numberOfOrders
}
}
}
pageInfo { hasNextPage endCursor }
}
}
# customers:query — validated against api_version 2025-01
query AtRiskCustomers($ids: [ID!]!) {
nodes(ids: $ids) {
... on Customer {
id
email
firstName
lastName
totalSpentV2 { amount currencyCode }
numberOfOrders
tags
createdAt
}
}
}
Session Tracking
Claude MUST emit the following output at each stage. This is mandatory.
On start, emit:
╔══════════════════════════════════════════════╗
║ SKILL: Churn Risk Scorer ║
║ Store: ║
║ Started: ║
╚══════════════════════════════════════════════╝
After each step, emit:
[N/TOTAL]
→ Params:
→ Result:
On completion, emit:
For format: human (default):
══════════════════════════════════════════════
CHURN RISK REPORT ( days analyzed)
Repeat customers scored:
─────────────────────────────
Active (score 0-20): (%)
Cooling (score 20-50): (%)
At Risk (score 50-80): (%) ⚠️
Likely Churned (80-100): (%) 🔴
Revenue at risk: $/year
Top at-risk by value:
() Score: Last order: Lifetime: $
Output: churn_risk_.csv
══════════════════════════════════════════════
Output Format
CSV file churn_risk_.csv with columns: customer_id, email, first_name, last_name, order_count, total_spent, avg_purchase_interval_days, days_since_last_order, overdue_ratio, churn_risk_score, risk_segment, expected_annual_value
Error Handling
| Error | Cause | Recovery | |-------|-------|----------| | THROTTLED | API rate limit exceeded | Wait 2 seconds, retry up to 3 times | | Single-purchase customers | Can't calculate interval | Exclude from scoring (need 2+ orders) | | Guest orders | No customer linkage | Skip — cannot build customer profile |
Best Practices
- Pair with
customer-win-backskill to take action on At-Risk and Likely Churned segments. - Use with
rfm-customer-segmentationfor a more holistic view of customer health. - High-value churning customers (top 20% by spend) should get personalized outreach.
- Export At-Risk segment to email marketing platform for automated win-back sequences.
- Adjust
risk_thresholdbased on your product type: consumables (1.3), fashion (1.5), furniture (2.0).
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: 40RTY-ai
- Source: 40RTY-ai/shopify-admin-skills
- License: MIT
- Homepage: http://skills.40rty.ai
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.