/shopify-admin-frequently-bought-together
Read-only: mines order history to find product pairs and triplets frequently purchased together, generating cross-sell and bundle recommendations.
$ npx -y skills add 40rty-ai/shopify-admin-skills --skill shopify-admin-frequently-bought-together --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/shopify-admin-frequently-bought-together
Context preview
The summary Claude sees to decide when to auto-load this skill.
Read-only: mines order history to find product pairs and triplets frequently purchased together, generating cross-sell and bundle recommendations.
SKILL.md
shopify-admin-frequently-bought-together.SKILL.mdname: shopify-admin-frequently-bought-together
role: conversion-optimization
description: "Read-only: mines order history to find product pairs and triplets frequently purchased together, generating cross-sell and bundle recommendations."
toolkit: shopify-admin, shopify-admin-execution
api_version: "2025-01"
graphql_operations:
- orders:query
- products:query
status: stable
compatibility: Claude Code, Cursor, Codex, Gemini CLI
Purpose
Analyzes order history to discover which products are frequently purchased together. Calculates co-occurrence frequency, lift scores, and confidence metrics to generate data-driven cross-sell recommendations and bundle candidates. Read-only — no mutations.
Prerequisites
- Authenticated Shopify CLI session: `shopify store auth --store <domain> --scopes read_orders,read_products`
- API scopes: `read_orders`, `read_products`
Parameters
| Parameter | Type | Required | Default | Description | |-----------|------|----------|---------|-------------| | store | string | yes | — | Store domain | | days_back | integer | no | 180 | Order lookback window | | min_support | integer | no | 3 | Minimum co-occurrence count to report a pair | | max_results | integer | no | 25 | Maximum product pairs to return | | group_size | integer | no | 2 | Pair size: `2` for pairs, `3` for triplets | | collection_filter | string | no | — | Limit to products in a specific collection | | format | string | no | human | Output format: `human` or `json` |
Safety
> ℹ️ Read-only skill — no mutations are executed. Safe to run at any time.
Workflow Steps
1. **OPERATION:** `orders` — query **Inputs:** `query: "created_at:>='<NOW - days_back days>'"`, `first: 250`, select `lineItems { product { id, title } }`, pagination cursor **Expected output:** All orders with product-level line items
2. For each order with 2+ distinct products, generate all product pair combinations
3. Build co-occurrence matrix:
- **Support** = number of orders containing both products
- **Confidence(A→B)** = P(B|A) = support(A,B) / support(A)
- **Lift** = confidence(A→B) / P(B) — lift > 1.0 means positive association
4. **OPERATION:** `products` — query (enrichment) **Inputs:** Product IDs from top pairs for titles, images, prices **Expected output:** Product details for display
5. Rank pairs by lift score (descending), filter by min_support
GraphQL Operations
# orders:query — validated against api_version 2025-01
query OrderLineItems($query: String!, $after: String) {
orders(first: 250, after: $after, query: $query) {
edges {
node {
id
lineItems(first: 50) {
edges {
node {
product { id title }
quantity
}
}
}
}
}
pageInfo { hasNextPage endCursor }
}
}# products:query — validated against api_version 2025-01
query ProductDetails($ids: [ID!]!) {
nodes(ids: $ids) {
... on Product {
id
title
vendor
productType
priceRangeV2 {
minVariantPrice { amount currencyCode }
maxVariantPrice { amount currencyCode }
}
totalInventory
status
}
}
}Session Tracking
**Claude MUST emit the following output at each stage. This is mandatory.**
**On start**, emit:
╔══════════════════════════════════════════════╗
║ SKILL: Frequently Bought Together ║
║ Store: <store domain> ║
║ Started: <YYYY-MM-DD HH:MM UTC> ║
╚══════════════════════════════════════════════╝
**After each step**, emit:
[N/TOTAL] <QUERY|MUTATION> <OperationName>
→ Params: <brief summary of key inputs>
→ Result: <count or outcome>**On completion**, emit:
For `format: human` (default):
══════════════════════════════════════════════
FREQUENTLY BOUGHT TOGETHER (<days_back> days, <n> orders analyzed)
Unique product pairs found: <n>
Pairs meeting min_support: <n>
TOP PAIRS BY LIFT:
#1 "<product A>" + "<product B>"
Support: <n> orders Lift: <n>x Confidence: <pct>%
#2 "<product A>" + "<product B>"
Support: <n> orders Lift: <n>x Confidence: <pct>%
BUNDLE CANDIDATES (high support + high lift):
"<product A>" + "<product B>" → Suggested bundle price: $<n>
Output: fbt_pairs_<date>.csv
══════════════════════════════════════════════Output Format
CSV file `fbt_pairs_<YYYY-MM-DD>.csv` with columns: `product_a_id`, `product_a_title`, `product_b_id`, `product_b_title`, `support`, `confidence_a_to_b`, `confidence_b_to_a`, `lift`, `combined_avg_price`
Error Handling
| Error | Cause | Recovery | |-------|-------|----------| | `THROTTLED` | API rate limit exceeded | Wait 2 seconds, retry up to 3 times | | Single-item orders only | Store with no multi-item orders | Report empty — suggest longer lookback window | | Too many products | Combinatorial explosion | Limit to top 500 products by order count |
Best Practices
- Use `days_back: 180` or `365` for sufficient sample size.
- Pairs with lift > 2.0 are strong bundle candidates.
- Use results to create manual product bundles or configure upsell apps.
- Cross-reference with `top-product-performance` to ensure paired items are high-performing.
- Products with high confidence A→B but low confidence B→A suggest directional upsells (show B when A is in cart).
Read more
name: shopify-admin-frequently-bought-together role: conversion-optimization description: "Read-only: mines order history to find product pairs and triplets frequently purchased together, generating cross-sell and bundle recommendations." toolkit: shopify-admin, shopify-admin-execution api_version: "2025-01" graphql_operations: - orders:query - products:query status: stable compatibility: Claude Code, Cursor, Codex, Gemini CLI
Purpose
Analyzes order history to discover which products are frequently purchased together. Calculates co-occurrence frequency, lift scores, and confidence metrics to generate data-driven cross-sell recommendations and bundle candidates. Read-only — no mutations.
Prerequisites
- Authenticated Shopify CLI session: `shopify store auth --store <domain> --scopes read_orders,read_products`
- API scopes: `read_orders`, `read_products`
Parameters
| Parameter | Type | Required | Default | Description | |-----------|------|----------|---------|-------------| | store | string | yes | — | Store domain | | days_back | integer | no | 180 | Order lookback window | | min_support | integer | no | 3 | Minimum co-occurrence count to report a pair | | max_results | integer | no | 25 | Maximum product pairs to return | | group_size | integer | no | 2 | Pair size: `2` for pairs, `3` for triplets | | collection_filter | string | no | — | Limit to products in a specific collection | | format | string | no | human | Output format: `human` or `json` |
Safety
> ℹ️ Read-only skill — no mutations are executed. Safe to run at any time.
Workflow Steps
1. **OPERATION:** `orders` — query **Inputs:** `query: "created_at:>='<NOW - days_back days>'"`, `first: 250`, select `lineItems { product { id, title } }`, pagination cursor **Expected output:** All orders with product-level line items
2. For each order with 2+ distinct products, generate all product pair combinations
3. Build co-occurrence matrix:
- **Support** = number of orders containing both products
- **Confidence(A→B)** = P(B|A) = support(A,B) / support(A)
- **Lift** = confidence(A→B) / P(B) — lift > 1.0 means positive association
4. **OPERATION:** `products` — query (enrichment) **Inputs:** Product IDs from top pairs for titles, images, prices **Expected output:** Product details for display
5. Rank pairs by lift score (descending), filter by min_support
GraphQL Operations
# orders:query — validated against api_version 2025-01
query OrderLineItems($query: String!, $after: String) {
orders(first: 250, after: $after, query: $query) {
edges {
node {
id
lineItems(first: 50) {
edges {
node {
product { id title }
quantity
}
}
}
}
}
pageInfo { hasNextPage endCursor }
}
}# products:query — validated against api_version 2025-01
query ProductDetails($ids: [ID!]!) {
nodes(ids: $ids) {
... on Product {
id
title
vendor
productType
priceRangeV2 {
minVariantPrice { amount currencyCode }
maxVariantPrice { amount currencyCode }
}
totalInventory
status
}
}
}Session Tracking
**Claude MUST emit the following output at each stage. This is mandatory.**
**On start**, emit:
╔══════════════════════════════════════════════╗ ║ SKILL: Frequently Bought Together ║ ║ Store: <store domain> ║ ║ Started: <YYYY-MM-DD HH:MM UTC> ║ ╚══════════════════════════════════════════════╝
**After each step**, emit:
[N/TOTAL] <QUERY|MUTATION> <OperationName>
→ Params: <brief summary of key inputs>
→ Result: <count or outcome>**On completion**, emit:
For `format: human` (default):
══════════════════════════════════════════════
FREQUENTLY BOUGHT TOGETHER (<days_back> days, <n> orders analyzed)
Unique product pairs found: <n>
Pairs meeting min_support: <n>
TOP PAIRS BY LIFT:
#1 "<product A>" + "<product B>"
Support: <n> orders Lift: <n>x Confidence: <pct>%
#2 "<product A>" + "<product B>"
Support: <n> orders Lift: <n>x Confidence: <pct>%
BUNDLE CANDIDATES (high support + high lift):
"<product A>" + "<product B>" → Suggested bundle price: $<n>
Output: fbt_pairs_<date>.csv
══════════════════════════════════════════════Output Format
CSV file `fbt_pairs_<YYYY-MM-DD>.csv` with columns: `product_a_id`, `product_a_title`, `product_b_id`, `product_b_title`, `support`, `confidence_a_to_b`, `confidence_b_to_a`, `lift`, `combined_avg_price`
Error Handling
| Error | Cause | Recovery | |-------|-------|----------| | `THROTTLED` | API rate limit exceeded | Wait 2 seconds, retry up to 3 times | | Single-item orders only | Store with no multi-item orders | Report empty — suggest longer lookback window | | Too many products | Combinatorial explosion | Limit to top 500 products by order count |
Best Practices
- Use `days_back: 180` or `365` for sufficient sample size.
- Pairs with lift > 2.0 are strong bundle candidates.
- Use results to create manual product bundles or configure upsell apps.
- Cross-reference with `top-product-performance` to ensure paired items are high-performing.
- Products with high confidence A→B but low confidence B→A suggest directional upsells (show B when A is in cart).
Community-maintained AI agent skills for operating Shopify stores — workflows, optimization, reports and more
Other skills on shopify-admin-skills.
- /shopify-admin-agentic-crawler-access
Edit the theme's robots.txt.liquid to explicitly allow AI crawlers (GPTBot, ClaudeBot, PerplexityBot, Google-Extended, OAI-SearchBot, Amazonbot) so AI assistants are permitted to read the catalog.
Open skill - /shopify-admin-agentic-description-enrichment
Rewrite thin product descriptions into structured, fact-rich copy (materials, fit, use-cases, the words shoppers actually type) so AI agents have something concrete to quote and match.
Open skill - /shopify-admin-agentic-image-alt-text
Generate and set descriptive alt text on product images so AI agents (which can't 'see' pixels) can understand and recommend what each product looks like.
Open skill - /shopify-admin-agentic-llms-txt
Generate and publish an /llms.txt guide (brand summary, flagship products, key policies, contact) via a theme template so AI assistants get a curated, machine-readable map of the store.
Open skill - /shopify-admin-agentic-metafields-setup
Define and populate agentic-commerce metafields (material, attributes, key features, specs, sizing) so AI agents can filter and match products to specific shopper requirements.
Open skill - /shopify-admin-agentic-organization-schema
Inject an Organization JSON-LD block (name, logo, sameAs social links, contactPoint) into the theme so AI agents can verify the store is a real, trusted brand and link it to its public identity.
Open skill

