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

Shopify Admin Shipping Cost Analysis

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

shopify-admin-shipping-cost-analysis is a Claude Code skill that compares shipping revenue charged to customers against actual shipping cost by carrier and method.

About

shopify-admin-shipping-cost-analysis compares the shipping amount charged to customers against the actual shipping cost on orders, broken down by carrier and method. A finance owner runs it to see where shipping is subsidized or over-charged. It is read-only over paid orders in a lookback window.

  • Compares shipping charged to customers vs actual shipping cost by carrier and method
  • Identifies where shipping is subsidized or over-charged
  • Read-only over paid orders in a lookback window

Shopify Admin Shipping Cost Analysis by the numbers

  • 7 all-time installs (skills.sh)
  • Ranked #826 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-shipping-cost-analysis capabilities & compatibility

Free; needs a Shopify CLI session with read_orders scope

Capabilities
shipping analytics · cost reconciliation · carrier analysis
Use cases
data analysis
Runs
Runs locally
Pricing
Free
From the docs

What shopify-admin-shipping-cost-analysis says it does

Compares the shipping amount charged to customers against the actual shipping cost recorded on orders, broken down by carrier and shipping method.
SKILL.md
Identifies where shipping is being subsidized (charged less than cost) or over-charged.
SKILL.md
npx skills add https://github.com/40rty-ai/shopify-admin-skills --skill shopify-admin-shipping-cost-analysis

Add your badge

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

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

What it does

A finance owner reconciles shipping revenue against actual shipping cost by carrier.

Who is it for?

Finance teams reconciling shipping revenue against carrier cost

Skip if: Manually entered orders that lack recorded shipping cost data

When should I use this skill?

You want to know whether shipping is under- or over-charged by carrier

What you get

A per-carrier breakdown of total charged, total cost, and net subsidy or overage.

  • per-carrier shipping charged vs cost breakdown

By the numbers

  • default 30-day lookback window
  • single GraphQL orders query

Files

SKILL.mdMarkdownGitHub ↗

Purpose

Compares the shipping amount charged to customers against the actual shipping cost recorded on orders, broken down by carrier and shipping method. Identifies where shipping is being subsidized (charged less than cost) or over-charged. Read-only — no mutations.

Prerequisites

  • Authenticated Shopify CLI session: shopify store auth --store <domain> --scopes read_orders
  • API scopes: read_orders
  • Actual shipping costs are only available if recorded via the Shopify Admin API or carrier-calculated shipping; manually entered orders may lack cost data.

Parameters

ParameterTypeRequiredDefaultDescription
storestringyesStore domain (e.g., mystore.myshopify.com)
days_backintegerno30Lookback window
formatstringnohumanOutput 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: "financial_status:paid created_at:>='<NOW - days_back days>'", first: 250, select shippingLines { title, discountedPriceSet, originalPriceSet, carrierIdentifier }, pagination cursor Expected output: Orders with shipping line details; paginate until hasNextPage: false

2. For each shipping line: record carrier (from title or carrierIdentifier), charged amount (discountedPriceSet), and actual cost if available

3. Group by carrier/method; calculate total charged, total cost, net subsidy/overage

GraphQL Operations

# orders:query — validated against api_version 2025-01
query ShippingCostAnalysis($query: String!, $after: String) {
  orders(first: 250, after: $after, query: $query) {
    edges {
      node {
        id
        name
        createdAt
        totalShippingPriceSet {
          shopMoney {
            amount
            currencyCode
          }
        }
        shippingLines(first: 5) {
          edges {
            node {
              id
              title
              carrierIdentifier
              originalPriceSet {
                shopMoney {
                  amount
                  currencyCode
                }
              }
              discountedPriceSet {
                shopMoney {
                  amount
                  currencyCode
                }
              }
            }
          }
        }
      }
    }
    pageInfo {
      hasNextPage
      endCursor
    }
  }
}

Session Tracking

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

On start, emit:

╔══════════════════════════════════════════════╗
║  SKILL: Shipping Cost Analysis               ║
║  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):

══════════════════════════════════════════════
SHIPPING COST ANALYSIS  (<days_back> days)
  Orders analyzed:     <n>
  Total charged to customers: $<amount>
  Free shipping orders:       <n>

  By Carrier/Method:
    "Standard Shipping"  Orders: <n>  Charged: $<n>  Avg: $<n>
    "Express"            Orders: <n>  Charged: $<n>  Avg: $<n>
  Output: shipping_cost_<date>.csv
══════════════════════════════════════════════

For format: json, emit:

{
  "skill": "shipping-cost-analysis",
  "store": "<domain>",
  "period_days": 30,
  "orders_analyzed": 0,
  "total_shipping_charged": 0,
  "free_shipping_order_count": 0,
  "currency": "USD",
  "by_method": [],
  "output_file": "shipping_cost_<date>.csv"
}

Output Format

CSV file shipping_cost_<YYYY-MM-DD>.csv with columns: order_name, shipping_method, carrier, charged_amount, original_price, discount_applied, currency

Error Handling

ErrorCauseRecovery
THROTTLEDAPI rate limit exceededWait 2 seconds, retry up to 3 times
No shipping linesDigital products or free shipping storeReport $0 shipping revenue
Carrier identifier missingCustom or manual shipping methodsUse title as carrier name

Best Practices

  • Free shipping orders show $0 charged but the actual carrier cost is your subsidy — knowing this per carrier helps evaluate free shipping threshold decisions.
  • originalPriceSet vs discountedPriceSet difference represents shipping discounts applied to customers — useful for understanding total shipping subsidy cost.
  • Pair with average-order-value-trends to evaluate whether free shipping thresholds are driving the intended AOV lift.
  • For actual carrier cost reconciliation, cross-reference with carrier invoices — Shopify's API only stores what was charged to customers, not what was paid to carriers unless your carrier integration writes those costs back.

Related skills

FAQ

When is cost data unavailable?

Actual cost is only available for orders where it was recorded via the API or carrier-calculated shipping; manually entered orders may lack cost data.

Which orders are included?

Paid orders (financial_status:paid) within the days_back window.

Finance & Tradingecommercefinance

This week in AI coding

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

unsubscribe anytime.