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

Shopify Admin Tracking Update Bulk

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

shopify-admin-tracking-update-bulk is a Claude Code skill that batch-updates tracking numbers and carrier URLs on existing Shopify fulfillments.

About

A Claude Code skill that looks up existing Shopify fulfillments and updates their tracking numbers and carrier URLs in bulk via the fulfillmentUpdate mutation. It is used when a carrier reissues tracking IDs or a 3PL uploads corrected tracking. It defaults to dry-run and can optionally resend shipping confirmations.

  • Batch-updates tracking numbers and carrier URLs on existing Shopify fulfillments
  • Dry-run by default; optional customer re-notification per fulfillment
  • Replaces order-by-order manual tracking corrections in Shopify Admin

Shopify Admin Tracking Update Bulk by the numbers

  • 7 all-time installs (skills.sh)
  • Ranked #1,587 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-tracking-update-bulk capabilities & compatibility

Free; requires an authenticated Shopify CLI session with write_fulfillments.

Capabilities
bulk tracking update · fulfillment correction
Runs
Runs locally
Pricing
Free
From the docs

What shopify-admin-tracking-update-bulk says it does

Batch-update tracking numbers and URLs on existing fulfillments when a carrier reassigns tracking IDs.
SKILL.md
Run with `dry_run: true` to confirm the fulfillment list before committing.
SKILL.md
npx skills add https://github.com/40rty-ai/shopify-admin-skills --skill shopify-admin-tracking-update-bulk

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

Correct tracking numbers across many Shopify fulfillments in one bulk run.

Who is it for?

Fulfillment ops fixing many tracking numbers after a carrier or 3PL reassigns IDs.

Skip if: Creating new fulfillments; it only updates tracking on existing ones.

When should I use this skill?

A carrier reissued tracking IDs or a 3PL pushed wrong tracking numbers.

What you get

Tracking numbers updated in bulk with a per-fulfillment status CSV.

  • tracking_update_<date>.csv
  • Per-fulfillment update status

By the numbers

  • 2 GraphQL operations (order query + fulfillmentUpdate mutation)
  • dry_run defaults to true
  • notify_customer defaults to false

Files

SKILL.mdMarkdownGitHub ↗

Purpose

Looks up existing fulfillments on orders and updates their tracking numbers and carrier URLs in bulk. Used when a carrier reissues tracking IDs after a label reprint, a 3PL batch-uploads corrected tracking, or a carrier integration pushes wrong tracking numbers. Replaces manual tracking corrections in Shopify Admin order by order.

Prerequisites

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

Parameters

ParameterTypeRequiredDefaultDescription
storestringyesStore domain (e.g., mystore.myshopify.com)
updatesarrayyesList of {order_id, fulfillment_id, tracking_number, tracking_url, carrier} objects
notify_customerboolnofalseResend shipping confirmation with updated tracking
dry_runboolnotruePreview updates without executing mutations
formatstringnohumanOutput format: human or json

Safety

⚠️ fulfillmentUpdate overwrites existing tracking info. Set notify_customer: false unless you explicitly want to resend shipment notifications — customers will receive a new email for every updated fulfillment if enabled. Run with dry_run: true to confirm the fulfillment list before committing.

Workflow Steps

1. OPERATION: order — query Inputs: id: <order_id> for each order in updates Expected output: Order with fulfillments { id, trackingInfo } to confirm existing fulfillment IDs match

2. OPERATION: fulfillmentUpdate — mutation Inputs: fulfillmentId: <id>, trackingInfoUpdateInput: { company, number, url }, notifyCustomer Expected output: fulfillment { id, trackingInfo }, userErrors

GraphQL Operations

# order:query — validated against api_version 2025-01
query OrderFulfillments($id: ID!) {
  order(id: $id) {
    id
    name
    fulfillments {
      id
      status
      trackingInfo {
        company
        number
        url
      }
    }
  }
}
# fulfillmentUpdate:mutation — validated against api_version 2025-01
mutation FulfillmentUpdate($fulfillmentId: ID!, $trackingInfoInput: FulfillmentTrackingInput!, $notifyCustomer: Boolean) {
  fulfillmentUpdate(
    fulfillmentId: $fulfillmentId
    trackingInfoUpdateInput: $trackingInfoInput
    notifyCustomer: $notifyCustomer
  ) {
    fulfillment {
      id
      status
      trackingInfo {
        company
        number
        url
      }
    }
    userErrors {
      field
      message
    }
  }
}

Session Tracking

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

On start, emit:

╔══════════════════════════════════════════════╗
║  SKILL: Tracking Update Bulk                 ║
║  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>

If dry_run: true, prefix every mutation step with [DRY RUN] and do not execute it.

On completion, emit:

For format: human (default):

══════════════════════════════════════════════
OUTCOME SUMMARY
  Fulfillments targeted:   <n>
  Tracking numbers updated: <n>
  Notifications sent:       <n>
  Errors:                   <n>
  Output:                   tracking_update_<date>.csv
══════════════════════════════════════════════

For format: json, emit:

{
  "skill": "tracking-update-bulk",
  "store": "<domain>",
  "started_at": "<ISO8601>",
  "completed_at": "<ISO8601>",
  "dry_run": true,
  "outcome": {
    "targeted": 0,
    "updated": 0,
    "notifications_sent": 0,
    "errors": 0,
    "output_file": "tracking_update_<date>.csv"
  }
}

Output Format

CSV file tracking_update_<YYYY-MM-DD>.csv with columns: order_name, fulfillment_id, old_tracking_number, new_tracking_number, carrier, notify_customer, status

Error Handling

ErrorCauseRecovery
THROTTLEDAPI rate limit exceededWait 2 seconds, retry up to 3 times
userErrors on fulfillmentUpdateFulfillment cancelled or not foundLog error, skip, continue
Fulfillment ID not on orderStale ID in updates listLog mismatch, skip, continue

Best Practices

  • Keep notify_customer: false unless the carrier is tracking a replacement shipment — customers find repeated shipping emails confusing and may open unnecessary support tickets.
  • Provide fulfillment_id directly in the updates input when possible to skip the order lookup step entirely.
  • For 3PL integrations that send corrected tracking via CSV, parse the CSV into the updates array before running this skill.

Related skills

FAQ

Will customers be emailed?

Only if notify_customer is true; it defaults to false.

Is it safe to preview first?

Yes, dry_run defaults to true and prefixes mutations with [DRY RUN].

This week in AI coding

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

unsubscribe anytime.