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

Shopify Admin Shipping Rate Audit

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

shopify-admin-shipping-rate-audit is a Claude Code skill that audits every Shopify delivery profile and zone to find zones with no rates or only manual rates.

About

shopify-admin-shipping-rate-audit walks every delivery profile and zone to verify each has at least one valid shipping rate, surfacing zones with no rates or only manual rates. An ops owner runs it to catch misconfigured zones that silently drop checkout conversions. It is read-only.

  • Walks every delivery profile and zone to verify each has a valid shipping rate
  • Surfaces zones with no rates or only manual rates that break checkout
  • Read-only; can flag suspiciously high rates via a threshold

Shopify Admin Shipping Rate Audit 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-shipping-rate-audit capabilities & compatibility

Free; needs a Shopify CLI session with read_shipping scope

Capabilities
shipping audit · config audit · checkout hygiene
Runs
Runs locally
Pricing
Free
From the docs

What shopify-admin-shipping-rate-audit says it does

Audits the shipping configuration for every delivery profile on the store.
SKILL.md
A misconfigured zone silently drops checkout conversions — this skill catches it before customers do.
SKILL.md
npx skills add https://github.com/40rty-ai/shopify-admin-skills --skill shopify-admin-shipping-rate-audit

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

A fulfillment ops owner audits shipping zones to catch missing or misconfigured rates before customers hit checkout failures.

Who is it for?

Ops teams verifying shipping-zone coverage before it breaks checkout

Skip if: Changing shipping rates (read-only; it does not modify shipping behavior)

When should I use this skill?

You suspect a shipping zone has no rate or only a manual rate and want to catch it before checkout fails

What you get

A per-profile and global list of zones with zero rates, manual-only rates, or suspiciously high rates.

  • per-profile and global list of misconfigured shipping zones

By the numbers

  • default flag_manual_only true
  • walks up to 50 delivery profiles per page

Files

SKILL.mdMarkdownGitHub ↗

Purpose

Audits the shipping configuration for every delivery profile on the store. Surfaces (a) zones with zero shipping rates configured (causing checkout failures), (b) zones with only manual flat rates (no carrier-calculated rates, often a missed setup step), and (c) profiles with no zone coverage for known sales geographies. A misconfigured zone silently drops checkout conversions — this skill catches it before customers do. Read-only — no mutations.

Prerequisites

  • Authenticated Shopify CLI session: shopify store auth --store <domain> --scopes read_shipping
  • API scopes: read_shipping

Parameters

ParameterTypeRequiredDefaultDescription
storestringyesStore domain (e.g., mystore.myshopify.com)
profile_filterstringnoOptional delivery profile name to scope the audit
flag_manual_onlyboolnotrueFlag zones that have only manual rates (no carrier-calculated rates)
flag_high_pricefloatnoOptional: flag any rate above this price (likely typo or stale)
formatstringnohumanOutput format: human or json

Safety

ℹ️ Read-only skill — no mutations are executed. Safe to run at any time. The skill reads delivery configuration only; it does not change any shipping behavior.

Workflow Steps

1. OPERATION: deliveryProfiles — query Inputs: first: 50, select profileLocationGroups, profileItems, name, default, pagination cursor Expected output: All delivery profiles, including the default, with location groups and product associations; paginate until hasNextPage: false

2. For each profile, walk every profileLocationGroups[].locationGroupZones. For each zone, capture: zone name, country codes, method definitions (rates).

3. Flag zones with: zero methodDefinitions, OR only manual priceConditions-based rates (no carrier-calculated method when flag_manual_only: true), OR a method whose price.amount > flag_high_price if the threshold is set.

4. Aggregate findings per profile, then build a global summary of misconfigured zones across the store.

GraphQL Operations

# deliveryProfiles:query — validated against api_version 2025-01
query DeliveryProfilesAudit($after: String) {
  deliveryProfiles(first: 50, after: $after) {
    edges {
      node {
        id
        name
        default
        profileItems(first: 1) {
          edges {
            node {
              id
            }
          }
        }
        profileLocationGroups {
          locationGroup {
            id
            locations(first: 50) {
              edges {
                node {
                  id
                  name
                  address {
                    countryCode
                  }
                }
              }
            }
          }
          locationGroupZones(first: 50) {
            edges {
              node {
                zone {
                  id
                  name
                  countries {
                    code {
                      countryCode
                    }
                    provinces {
                      code
                    }
                  }
                }
                methodDefinitions(first: 50) {
                  edges {
                    node {
                      id
                      name
                      active
                      rateProvider {
                        __typename
                        ... on DeliveryRateDefinition {
                          price {
                            amount
                            currencyCode
                          }
                        }
                        ... on DeliveryParticipant {
                          carrierService {
                            id
                            name
                          }
                          fixedFee {
                            amount
                            currencyCode
                          }
                          percentageOfRateFee
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
    pageInfo {
      hasNextPage
      endCursor
    }
  }
}

Session Tracking

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

On start, emit:

╔══════════════════════════════════════════════╗
║  SKILL: Shipping Rate Audit                  ║
║  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 RATE AUDIT
  Profiles inspected:    <n>
  Zones inspected:       <n>
  Zones with no rates:   <n>
  Zones manual-only:     <n>
  Rates above threshold: <n>

  Critical issues (zero-rate zones):
    Profile: <name>  Zone: <name>  Countries: <list>
  Output: shipping_rate_audit_<date>.csv
══════════════════════════════════════════════

For format: json, emit:

{
  "skill": "shipping-rate-audit",
  "store": "<domain>",
  "profiles_inspected": 0,
  "zones_inspected": 0,
  "zones_no_rates": 0,
  "zones_manual_only": 0,
  "rates_above_threshold": 0,
  "issues": [],
  "output_file": "shipping_rate_audit_<date>.csv"
}

Output Format

CSV file shipping_rate_audit_<YYYY-MM-DD>.csv with columns: profile_name, zone_name, countries, rate_count, manual_rate_count, carrier_rate_count, min_rate, max_rate, currency, flag

Error Handling

ErrorCauseRecovery
THROTTLEDAPI rate limit exceededWait 2 seconds, retry up to 3 times
Profile has no productsEmpty profileNote in output, do not flag as critical
Zone has only DeliveryRateDefinition (no carrier)Manual rates onlyFlag if flag_manual_only: true
Country list is null on a zoneRest-of-world catch-all zoneTreat as wildcard, do not flag for missing countries

Best Practices

  • Run after any major shipping change (new region launch, carrier switch) to confirm zone coverage matches the rollout plan.
  • Zero-rate zones cause silent checkout failures — customers from that geography see "no shipping available" and abandon. Treat these as P0.
  • Manual-only zones are not always wrong — flat-rate domestic shipping is a deliberate choice. Use flag_manual_only: false if your store is intentionally flat-rate.
  • Cross-reference flagged country codes with customers:query filtered by country to estimate revenue at risk.
  • Run quarterly to catch zones added by app integrations or staff that drift from the documented configuration.

Related skills

FAQ

What does it flag?

Zones with zero shipping rates, zones with only manual (non carrier-calculated) rates, and optionally rates above a high-price threshold.

Does it change shipping settings?

No, it reads delivery configuration only and does not change any shipping behavior.

This week in AI coding

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

unsubscribe anytime.