{
  "schemaVersion": "1.0",
  "item": {
    "slug": "logistics-tracking",
    "name": "Logistics Tracking",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/shopmeskills/logistics-tracking",
    "canonicalUrl": "https://clawhub.ai/shopmeskills/logistics-tracking",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/logistics-tracking",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=logistics-tracking",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/logistics-tracking"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/logistics-tracking",
    "agentPageUrl": "https://openagent3.xyz/skills/logistics-tracking/agent",
    "manifestUrl": "https://openagent3.xyz/skills/logistics-tracking/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/logistics-tracking/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Logistics Tracking",
        "body": "Track international packages by tracking number only. Supports 3100+ carriers worldwide."
      },
      {
        "title": "When to Use",
        "body": "User asks \"where is my package\" or provides a tracking number\nUser needs to check shipment status or delivery estimate\nUser asks about customs clearance or logistics exceptions\nUser needs to track multiple packages at once"
      },
      {
        "title": "How It Works",
        "body": "ModeAPI Key Required?DescriptionWith TRACK17_API_KEYYes (1 key)Uses the official api.17track.net — most reliable, 3100+ carriers.Without keyNoUses Playwright (headless Chromium) to query t.17track.net. Requires playwright npm package.\n\nRecommendation: Set TRACK17_API_KEY for the best reliability. Get a free key at https://api.17track.net"
      },
      {
        "title": "Option A: Deploy as HTTP Service (users need no key)",
        "body": "You deploy the MCP HTTP server with TRACK17_API_KEY on your server. End users connect via URL — they don't need any API key."
      },
      {
        "title": "1. Start the server (your side)",
        "body": "export TRACK17_API_KEY=your-17track-api-key\nnpx -y @shopmeagent/logistics-tracking-mcp serve\n\n# Default: http://0.0.0.0:3000/mcp\n# Override with PORT and HOST env vars"
      },
      {
        "title": "2. User/client MCP config (Streamable HTTP)",
        "body": "{\n  \"mcpServers\": {\n    \"logistics-tracking\": {\n      \"type\": \"streamable-http\",\n      \"url\": \"https://your-domain.com/mcp\"\n    }\n  }\n}\n\nUsers only need a tracking number — no API key required on their end."
      },
      {
        "title": "Option B: Local stdio (zero-config or with key)",
        "body": "Zero-config (no key, uses Playwright fallback — requires playwright installed):\n\n{\n  \"mcpServers\": {\n    \"logistics-tracking\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@shopmeagent/logistics-tracking-mcp\"]\n    }\n  }\n}\n\nRecommended — with API key for broader carrier coverage and better reliability:\n\n{\n  \"mcpServers\": {\n    \"logistics-tracking\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@shopmeagent/logistics-tracking-mcp\"],\n      \"env\": {\n        \"TRACK17_API_KEY\": \"your-17track-api-key\"\n      }\n    }\n  }\n}\n\nGet a free 17track API key: https://api.17track.net"
      },
      {
        "title": "Using with OpenClaw",
        "body": "Add this skill to OpenClaw:\n\nnpx skills add shopmeskills/mcp\n\nThen in OpenClaw's MCP configuration, add either the HTTP or stdio config shown above.\n\nExample prompts:\n\n\"Track package YT2412345678901234\"\n\"Where is my package LX123456789CN?\"\n\"Check status of 1ZABCDEF1234567890\""
      },
      {
        "title": "track_package",
        "body": "Query tracking info for a single package.\n\nInput: trackingNumber (required), carrier (optional, auto-detected)\nReturns: status, current location, timeline of events"
      },
      {
        "title": "detect_carrier",
        "body": "Identify the carrier from a tracking number's format.\n\nInput: trackingNumber\nReturns: carrier name, confidence level"
      },
      {
        "title": "batch_track",
        "body": "Track up to 40 packages at once.\n\nInput: trackingNumbers array\nReturns: array of tracking results"
      },
      {
        "title": "explain_status",
        "body": "Get a human-readable explanation of a tracking status code.\n\nInput: statusCode (e.g. InTransit, CustomsClearance, Delivered)\nReturns: description and advice in English"
      },
      {
        "title": "Tracking Number Format Guide",
        "body": "PatternCarrierExampleXX123456789CNChina PostLX123456789CNEX123456789CNChina EMSEA123456789CNYT + 16 digitsYanwenYT1234567890123456LP + 14+ digitsCainiaoLP12345678901234SF + 12+ digitsSF ExpressSF12345678901231Z + 16 charsUPS1ZABCDEF123456789094/93/92 + 20 digitsUSPS940011189922310001234510-11 digitsDHL123456789012-15 digitsFedEx123456789012"
      },
      {
        "title": "Typical Delivery Times (International)",
        "body": "RouteStandardExpressChina to US15-30 days5-10 daysChina to EU15-30 days5-10 daysChina to SE Asia7-15 days3-7 daysChina to Japan/Korea5-10 days3-5 days"
      },
      {
        "title": "Status Codes Explained",
        "body": "InfoReceived: Carrier has the info but hasn't picked up the package (1-3 day wait)\nInTransit: Package is moving through the logistics network\nCustomsClearance: Going through customs (3-7 business days typical)\nOutForDelivery: Final delivery attempt today\nDelivered: Successfully delivered\nException: Problem occurred (customs hold, wrong address, failed delivery)\nReturned: Being sent back to origin"
      },
      {
        "title": "Tips",
        "body": "No key needed: Without TRACK17_API_KEY, the tool uses Playwright to query 17track directly. Install Playwright with npm install playwright for this to work.\n3100+ carriers: With a 17track API key, auto-detects carrier from the tracking number.\nWait 24-48 hours after shipment before tracking — data may not be available on day one.\nAllow at least 2 hours between queries for the same tracking number to avoid rate limiting.\nUse batch_track for multiple packages — more efficient than individual queries."
      }
    ],
    "body": "Logistics Tracking\n\nTrack international packages by tracking number only. Supports 3100+ carriers worldwide.\n\nWhen to Use\nUser asks \"where is my package\" or provides a tracking number\nUser needs to check shipment status or delivery estimate\nUser asks about customs clearance or logistics exceptions\nUser needs to track multiple packages at once\nHow It Works\nMode\tAPI Key Required?\tDescription\nWith TRACK17_API_KEY\tYes (1 key)\tUses the official api.17track.net — most reliable, 3100+ carriers.\nWithout key\tNo\tUses Playwright (headless Chromium) to query t.17track.net. Requires playwright npm package.\n\nRecommendation: Set TRACK17_API_KEY for the best reliability. Get a free key at https://api.17track.net\n\nOption A: Deploy as HTTP Service (users need no key)\n\nYou deploy the MCP HTTP server with TRACK17_API_KEY on your server. End users connect via URL — they don't need any API key.\n\n1. Start the server (your side)\nexport TRACK17_API_KEY=your-17track-api-key\nnpx -y @shopmeagent/logistics-tracking-mcp serve\n\n# Default: http://0.0.0.0:3000/mcp\n# Override with PORT and HOST env vars\n\n2. User/client MCP config (Streamable HTTP)\n{\n  \"mcpServers\": {\n    \"logistics-tracking\": {\n      \"type\": \"streamable-http\",\n      \"url\": \"https://your-domain.com/mcp\"\n    }\n  }\n}\n\n\nUsers only need a tracking number — no API key required on their end.\n\nOption B: Local stdio (zero-config or with key)\n\nZero-config (no key, uses Playwright fallback — requires playwright installed):\n\n{\n  \"mcpServers\": {\n    \"logistics-tracking\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@shopmeagent/logistics-tracking-mcp\"]\n    }\n  }\n}\n\n\nRecommended — with API key for broader carrier coverage and better reliability:\n\n{\n  \"mcpServers\": {\n    \"logistics-tracking\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@shopmeagent/logistics-tracking-mcp\"],\n      \"env\": {\n        \"TRACK17_API_KEY\": \"your-17track-api-key\"\n      }\n    }\n  }\n}\n\n\nGet a free 17track API key: https://api.17track.net\n\nUsing with OpenClaw\n\nAdd this skill to OpenClaw:\n\nnpx skills add shopmeskills/mcp\n\n\nThen in OpenClaw's MCP configuration, add either the HTTP or stdio config shown above.\n\nExample prompts:\n\n\"Track package YT2412345678901234\"\n\"Where is my package LX123456789CN?\"\n\"Check status of 1ZABCDEF1234567890\"\nAvailable Tools\ntrack_package\n\nQuery tracking info for a single package.\n\nInput: trackingNumber (required), carrier (optional, auto-detected)\nReturns: status, current location, timeline of events\ndetect_carrier\n\nIdentify the carrier from a tracking number's format.\n\nInput: trackingNumber\nReturns: carrier name, confidence level\nbatch_track\n\nTrack up to 40 packages at once.\n\nInput: trackingNumbers array\nReturns: array of tracking results\nexplain_status\n\nGet a human-readable explanation of a tracking status code.\n\nInput: statusCode (e.g. InTransit, CustomsClearance, Delivered)\nReturns: description and advice in English\nTracking Number Format Guide\nPattern\tCarrier\tExample\nXX123456789CN\tChina Post\tLX123456789CN\nEX123456789CN\tChina EMS\tEA123456789CN\nYT + 16 digits\tYanwen\tYT1234567890123456\nLP + 14+ digits\tCainiao\tLP12345678901234\nSF + 12+ digits\tSF Express\tSF1234567890123\n1Z + 16 chars\tUPS\t1ZABCDEF1234567890\n94/93/92 + 20 digits\tUSPS\t9400111899223100012345\n10-11 digits\tDHL\t1234567890\n12-15 digits\tFedEx\t123456789012\nTypical Delivery Times (International)\nRoute\tStandard\tExpress\nChina to US\t15-30 days\t5-10 days\nChina to EU\t15-30 days\t5-10 days\nChina to SE Asia\t7-15 days\t3-7 days\nChina to Japan/Korea\t5-10 days\t3-5 days\nStatus Codes Explained\nInfoReceived: Carrier has the info but hasn't picked up the package (1-3 day wait)\nInTransit: Package is moving through the logistics network\nCustomsClearance: Going through customs (3-7 business days typical)\nOutForDelivery: Final delivery attempt today\nDelivered: Successfully delivered\nException: Problem occurred (customs hold, wrong address, failed delivery)\nReturned: Being sent back to origin\nTips\nNo key needed: Without TRACK17_API_KEY, the tool uses Playwright to query 17track directly. Install Playwright with npm install playwright for this to work.\n3100+ carriers: With a 17track API key, auto-detects carrier from the tracking number.\nWait 24-48 hours after shipment before tracking — data may not be available on day one.\nAllow at least 2 hours between queries for the same tracking number to avoid rate limiting.\nUse batch_track for multiple packages — more efficient than individual queries."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/shopmeskills/logistics-tracking",
    "publisherUrl": "https://clawhub.ai/shopmeskills/logistics-tracking",
    "owner": "shopmeskills",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/logistics-tracking",
    "downloadUrl": "https://openagent3.xyz/downloads/logistics-tracking",
    "agentUrl": "https://openagent3.xyz/skills/logistics-tracking/agent",
    "manifestUrl": "https://openagent3.xyz/skills/logistics-tracking/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/logistics-tracking/agent.md"
  }
}