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

Shopify Admin Payout Reconciliation

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

shopify-admin-payout-reconciliation is a Claude Code skill that reconciles Shopify Payments payouts against the order transactions that funded them and flags amount discrepancies.

About

This skill reconciles Shopify Payments payouts to the order transactions that contributed to them, summing gross sales, refunds, adjustments, and fees to compare computed net against the reported payout net. It flags discrepancies with a delta and suspected cause for finance review. It is read-only, exits cleanly for non-Shopify-Payments stores, and produces a dated CSV.

  • Reconciles Shopify Payments payouts against the order transactions that funded them
  • Computes expected net from charges, refunds, adjustments, and fees, then flags deltas
  • Read-only; outputs a dated reconciliation CSV

Shopify Admin Payout Reconciliation by the numbers

  • 2 all-time installs (skills.sh)
  • Ranked #870 of 1,106 Finance & Trading skills by installs in the Skillselion catalog
  • Data as of Aug 1, 2026 (Skillselion catalog sync)
At a glance

shopify-admin-payout-reconciliation capabilities & compatibility

Free skill; requires an authenticated Shopify store using Shopify Payments with payout and order read scopes.

Capabilities
payout reconciliation · transaction matching · finance audit
Works with
github
Use cases
data analysis
Runs
Runs locally
Pricing
Bring your own API key
Requires keys
SHOPIFYSTOREADMINAUTHVIASHOPIFYCLIWITHSHOPIFYPAYMENTSENABLED
From the docs

What shopify-admin-payout-reconciliation says it does

Reconciles Shopify Payments payouts to the order transactions that contributed to them.
SKILL.md
Store must use Shopify Payments. If the store uses only third-party gateways, this skill exits cleanly with a message.
SKILL.md
npx skills add https://github.com/40rty-ai/shopify-admin-skills --skill shopify-admin-payout-reconciliation

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

Reconcile Shopify Payments payouts against order transactions and flag amount discrepancies.

Who is it for?

Finance teams verifying that Shopify Payments payouts match the underlying order transactions.

Skip if: Stores that use only third-party gateways; the skill exits cleanly when Shopify Payments is not used.

When should I use this skill?

You need to verify payout amounts against charges, refunds, adjustments, and fees over a period.

What you get

Each payout is classified ok or discrepancy with a delta, and discrepancies are drilled into at the order level.

  • CSV payout_reconciliation_<date>.csv plus ok/discrepancy classification and sum of absolute deltas

By the numbers

  • 2 GraphQL operations (shopifyPaymentsAccount query, orders query)
  • default 30-day lookback and 0.01 tolerance

Files

SKILL.mdMarkdownGitHub ↗

Purpose

Reconciles Shopify Payments payouts to the order transactions that contributed to them. For each payout, sums gross sales, refunds, adjustments, and fees, and compares the computed net to the payout's reported net amount. Discrepancies are flagged with a delta and the suspected cause. Read-only — no mutations.

Prerequisites

  • Authenticated Shopify CLI session: shopify store auth --store <domain> --scopes read_shopify_payments_payouts,read_orders
  • API scopes: read_shopify_payments_payouts, read_orders
  • Store must use Shopify Payments. If the store uses only third-party gateways, this skill exits cleanly with a message.

Parameters

ParameterTypeRequiredDefaultDescription
storestringyesStore domain (e.g., mystore.myshopify.com)
days_backintegerno30Lookback window covering payouts issued in this period
tolerancenumberno0.01Acceptable delta in store currency before flagging a discrepancy
formatstringnohumanOutput format: human or json

Safety

ℹ️ Read-only skill — no mutations are executed. Reconciliation output is informational; do not treat flagged discrepancies as confirmed errors before reviewing the underlying transactions in the Shopify admin.

Workflow Steps

1. OPERATION: shopifyPaymentsAccount — query Inputs: select payouts(first: 100, query: "issued_at:>='<NOW - days_back days>'") with id, issuedAt, status, net, gross, summary { chargesGross, chargesFee, refundsGross, refundsFee, adjustmentsGross, adjustmentsFee, retriedPayoutsGross, retriedPayoutsFee } Expected output: All payouts in the window. If account is null, exit — store does not use Shopify Payments.

2. For each payout, compute reconciliation expectation:

   expected_net = chargesGross - chargesFee
                - refundsGross + refundsFee   (refundsFee is normally negative / reversed)
                + adjustmentsGross - adjustmentsFee
                + retriedPayoutsGross - retriedPayoutsFee

delta = reported_net - expected_net

3. OPERATION: orders — query (only for flagged payouts to drill down) Inputs: query: "transactions:'gateway:shopify_payments processed_at:>=<payout.issuedAt - 7d> processed_at:<=<payout.issuedAt + 1d>'", first: 250 Expected output: Candidate orders that may have contributed to the payout, used for an order-level cross-check on top discrepancies

4. Classify each payout:

  • ok if |delta| <= tolerance
  • discrepancy otherwise — record sign (positive: payout overpaid us; negative: payout underpaid)

5. Aggregate totals across the window: total payouts, total reconciled, total discrepancies, sum of absolute deltas

GraphQL Operations

# shopifyPaymentsAccount:query — validated against api_version 2025-01
query PayoutReconciliation($payoutQuery: String!, $payoutAfter: String) {
  shopifyPaymentsAccount {
    id
    payoutSchedule { interval }
    payouts(first: 100, after: $payoutAfter, query: $payoutQuery) {
      edges {
        node {
          id
          issuedAt
          status
          net { amount currencyCode }
          gross { amount currencyCode }
          summary {
            chargesGross { amount currencyCode }
            chargesFee { amount currencyCode }
            refundsFeeGross { amount currencyCode }
            refundsFee { amount currencyCode }
            adjustmentsGross { amount currencyCode }
            adjustmentsFee { amount currencyCode }
            retriedPayoutsGross { amount currencyCode }
            retriedPayoutsFee { amount currencyCode }
          }
        }
      }
      pageInfo { hasNextPage endCursor }
    }
  }
}
# orders:query — validated against api_version 2025-01
query OrdersFundingPayout($query: String!, $after: String) {
  orders(first: 250, after: $after, query: $query) {
    edges {
      node {
        id
        name
        processedAt
        totalPriceSet { shopMoney { amount currencyCode } }
        totalReceivedSet { shopMoney { amount currencyCode } }
        transactions {
          id
          gateway
          kind
          status
          processedAt
          amountSet { shopMoney { amount currencyCode } }
        }
      }
    }
    pageInfo { hasNextPage endCursor }
  }
}

Session Tracking

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

On start, emit:

╔══════════════════════════════════════════════╗
║  SKILL: Payout Reconciliation                ║
║  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):

══════════════════════════════════════════════
PAYOUT RECONCILIATION  (<days_back> days)
  Payouts in window:    <n>
  Reconciled (ok):      <n>
  Discrepancies:        <n>   ⚠️
  Sum of abs deltas:    $<amount>

  Top discrepancies:
    Payout <date>  Reported: $<n>  Expected: $<n>  Δ: $<n>

  Output: payout_reconciliation_<date>.csv
══════════════════════════════════════════════

For format: json, emit:

{
  "skill": "payout-reconciliation",
  "store": "<domain>",
  "period_days": 30,
  "payouts_count": 0,
  "reconciled_count": 0,
  "discrepancy_count": 0,
  "sum_abs_delta": 0,
  "currency": "USD",
  "output_file": "payout_reconciliation_<date>.csv"
}

Output Format

CSV file payout_reconciliation_<YYYY-MM-DD>.csv with columns: payout_id, issued_at, status, reported_net, expected_net, delta, currency, charges_gross, charges_fee, refunds_gross, refunds_fee, adjustments_gross, verdict

Error Handling

ErrorCauseRecovery
THROTTLEDAPI rate limit exceededWait 2 seconds, retry up to 3 times
shopifyPaymentsAccount is nullStore does not use Shopify PaymentsExit cleanly; suggest reconciling via the third-party gateway dashboard
Currency mismatch within payoutMulti-currency storeReconcile only payouts in the presentment currency that matches account currency; flag others as currency_mismatch
Payout still IN_TRANSITNot yet finalSkip — reconcile after status moves to PAID

Best Practices

  • Run weekly on the morning after a payout is scheduled — same-day reconciliation catches discrepancies while transactions are easy to investigate.
  • For any flagged discrepancy, drill in: refunds processed inside the payout window often show up in the next payout's refundsGross, which can look like an underpayment if you forget to reconcile across windows.
  • Use this skill alongside your accounting export — these numbers should match your bookkeeping software's deposit records to the cent.
  • Tolerance > $0.01 should be used cautiously: anything above a few cents typically reflects a real fee or adjustment that deserves an explanation.
  • This skill does not detect fraud; it detects accounting deltas. If you suspect fraud, escalate via the Shopify admin's payout detail view.

Related skills

FAQ

What if the store does not use Shopify Payments?

If the store uses only third-party gateways, this skill exits cleanly with a message.

What is the default tolerance?

tolerance defaults to 0.01 in store currency before a payout is flagged as a discrepancy.

Finance & Tradingfinancepayments

This week in AI coding

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

unsubscribe anytime.