Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
40rty-ai avatar

Shopify Admin Return Fraud Detector

  • 2 installs
  • 173 repo stars
  • Updated June 26, 2026
  • 40rty-ai/shopify-admin-skills

shopify-admin-return-fraud-detector is a Claude Code skill that flags Shopify customers with abnormal return behavior, such as high return rate, wardrobing, or serial returns, for manual review.

About

This skill surfaces Shopify customers whose return behavior deviates from the store baseline so support and ops can review them before approving the next return. It detects three patterns: high return rate at or above 40 percent of orders, wardrobing (full-order returns shortly after delivery), and serial returners with many returns over time. It is read-only and produces a candidate list for human review, never an automatic block list.

  • Flags customers with abnormal return behavior: high return rate, wardrobing, or serial-returner patterns, for manual rev
  • Read-only against the Shopify Admin GraphQL orders, returns, and customers queries
  • Outputs a candidate review list only, never an automatic block list

Shopify Admin Return Fraud Detector by the numbers

  • 2 all-time installs (skills.sh)
  • Ranked #1,839 of 2,715 Automation & Workflows skills by installs in the Skillselion catalog
  • Data as of Aug 1, 2026 (Skillselion catalog sync)
At a glance

shopify-admin-return-fraud-detector capabilities & compatibility

Free; requires an authenticated Shopify store session with read_orders, read_returns, and read_customers scopes

Capabilities
return fraud detection · abnormal behavior detection · risk scoring · data analysis
Works with
github
Use cases
data analysis
Pricing
Free
From the docs

What shopify-admin-return-fraud-detector says it does

identifies customers with abnormal return behavior — high return rate, wardrobing patterns, or serial returner profiles — for manual review.
SKILL.md
Output is a candidate list, not an automatic block list.
SKILL.md
npx skills add https://github.com/40rty-ai/shopify-admin-skills --skill shopify-admin-return-fraud-detector

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs2
repo stars173
Last updatedJune 26, 2026
Repository40rty-ai/shopify-admin-skills

What it does

Flag Shopify customers with abnormal return behavior (high return rate, wardrobing, serial returns) for manual review.

Who is it for?

Reviewing customers with abnormal return behavior before approving their next return

Skip if: Automatically blocking or restricting customers, since false positives are common

When should I use this skill?

You want to spot potential return-abuse customers on a Shopify store for manual review

What you get

A candidate list of customers flagged for high return rate, wardrobing, or serial returning, for human review.

  • Candidate list of flagged customers with return-rate, wardrobing, and serial-returner flags

By the numbers

  • 3 GraphQL query operations (orders, returns, customers)
  • Default return_rate_threshold of 0.40
  • Default lookback window of 365 days

Files

SKILL.mdMarkdownGitHub ↗

Purpose

Surfaces customers whose return behavior deviates statistically from the store baseline so support and ops can review them before approving the next return. Three patterns are detected: (1) high return rate (≥40% of orders returned), (2) wardrobing — full-order returns shortly after delivery, (3) serial returners — many returns over time. Read-only. Output is a candidate list, not an automatic block list.

Prerequisites

  • Authenticated Shopify CLI session: shopify store auth --store <domain> --scopes read_orders,read_returns,read_customers
  • API scopes: read_orders, read_returns, read_customers

Parameters

ParameterTypeRequiredDefaultDescription
storestringyesStore domain (e.g., mystore.myshopify.com)
formatstringnohumanOutput format: human or json
days_backintegerno365Lookback window for orders and returns
min_ordersintegerno3Minimum lifetime orders for a customer to be evaluated (avoid penalizing one-off accidents)
return_rate_thresholdfloatno0.40Fraction of orders returned to flag as high (default 40%)
wardrobing_window_daysintegerno14Window between delivery and return-initiated to flag as wardrobing
serial_thresholdintegerno5Minimum total returns to flag as serial returner

Safety

ℹ️ Read-only skill — no mutations are executed. Output flags candidates for human review only — never block or restrict customers automatically. False positives are common (genuine size issues, address-correction returns, etc.); investigate before action.

Workflow Steps

1. OPERATION: orders — query Inputs: query: "created_at:>='<NOW - days_back days>'", first: 250, select id, customer { id }, processedAt, fulfillments { deliveredAt }, totalPriceSet, lineItems { quantity }, paginate Expected output: All orders in window grouped by customer.id

2. OPERATION: returns — query Inputs: Same date filter, first: 250, select id, createdAt, order { customer { id } }, returnLineItems { quantity }, totalQuantity Expected output: All returns in window joined to customer

3. OPERATION: customers — query Inputs: For flagged candidates only: query: "id:<ids>", select identity fields and tags Expected output: Contact data for the candidates list

4. Per customer compute total_orders, total_returns, return_rate, wardrobing_count (returns within wardrobing_window_days of delivery where Σ return qty ≥ Σ order qty). Flag rules: high_return_rate (orders ≥ min_orders AND rate ≥ return_rate_threshold), wardrobing (count ≥ 2), serial_returner (returns ≥ serial_threshold).

GraphQL Operations

# orders:query — validated against api_version 2025-01
query OrdersForReturnFraud($query: String!, $after: String) {
  orders(first: 250, after: $after, query: $query) {
    edges {
      node {
        id
        name
        processedAt
        displayFulfillmentStatus
        totalPriceSet { shopMoney { amount currencyCode } }
        customer { id }
        lineItems(first: 50) {
          edges { node { id quantity } }
        }
        fulfillments {
          deliveredAt
          status
          displayStatus
        }
      }
    }
    pageInfo { hasNextPage endCursor }
  }
}
# returns:query — validated against api_version 2025-01
query ReturnsForFraud($query: String!, $after: String) {
  returns(first: 250, after: $after, query: $query) {
    edges {
      node {
        id
        status
        createdAt
        totalQuantity
        order { id name customer { id } }
        returnLineItems(first: 50) {
          edges { node { id quantity returnReason } }
        }
      }
    }
    pageInfo { hasNextPage endCursor }
  }
}
# customers:query — validated against api_version 2025-01
query CustomerContactBatch($query: String!) {
  customers(first: 250, query: $query) {
    edges {
      node {
        id
        displayName
        firstName
        lastName
        defaultEmailAddress { emailAddress }
        phone
        numberOfOrders
        amountSpent { amount currencyCode }
        tags
      }
    }
  }
}

Session Tracking

Claude MUST emit the following output at each stage. This is mandatory.

On start, emit:

╔══════════════════════════════════════════════╗
║  SKILL: Return Fraud Detector                ║
║  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):

══════════════════════════════════════════════
RETURN FRAUD CANDIDATES  (<days_back> days)
  Customers evaluated:      <n>
  Flagged candidates:       <n>

  By rule:
    High return rate (≥<pct>%):  <n>
    Wardrobing pattern:           <n>
    Serial returner (≥<n>):       <n>

  Top suspects (by composite risk):
    <name>  <email>  Orders: <n>  Returns: <n>  Rate: <pct>%  Flags: <list>
  Output: return_fraud_candidates_<date>.csv
══════════════════════════════════════════════

For format: json, emit:

{
  "skill": "return-fraud-detector",
  "store": "<domain>",
  "period_days": 365,
  "customers_evaluated": 0,
  "flagged_candidates": 0,
  "by_rule": {
    "high_return_rate": 0,
    "wardrobing": 0,
    "serial_returner": 0
  },
  "output_file": "return_fraud_candidates_<date>.csv"
}

Output Format

CSV file return_fraud_candidates_<YYYY-MM-DD>.csv with columns: customer_id, name, email, phone, total_orders, total_returns, return_rate_pct, wardrobing_count, flags, lifetime_spend, last_return_date, tags

Error Handling

ErrorCauseRecovery
THROTTLEDAPI rate limit exceededWait 2 seconds, retry up to 3 times
Customer null on orderGuest checkoutSkip — cannot link multiple orders to a guest
Return missing order.customerAnonymized or deletedSkip return
deliveredAt missingOrder not yet deliveredSkip wardrobing flag for the order

Best Practices

  • Treat output as a review queue, never an automatic action — manually validate before tagging or restricting any account.
  • Tune return_rate_threshold to your category baseline. Apparel stores run 20–30% return rates; flagging at 40% picks outliers. For electronics or homewares, drop to 15–20%.
  • Cross-reference with return-reason-analysis — if returns concentrate on one product, the issue may be product quality, not abuse.
  • Pair with customer-merge candidates from duplicate-customer-finder — fraudsters often create duplicate accounts to dodge return-rate flags.
  • Run quarterly with a 12-month window for stable signal; monthly runs produce noisy flags from new customers with one return.

Related skills

FAQ

Does it block customers automatically?

No; output flags candidates for human review only and should never be used to block or restrict customers automatically, since false positives are common.

What patterns does it detect?

High return rate (40 percent or more of orders), wardrobing (full-order returns shortly after delivery), and serial returners (many returns over time).

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.