{
  "schemaVersion": "1.0",
  "item": {
    "slug": "track17",
    "name": "17track package tracking",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/tristanmanchester/track17",
    "canonicalUrl": "https://clawhub.ai/tristanmanchester/track17",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/track17",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=track17",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/track17.py"
    ],
    "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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/track17"
    },
    "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/track17",
    "agentPageUrl": "https://openagent3.xyz/skills/track17/agent",
    "manifestUrl": "https://openagent3.xyz/skills/track17/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/track17/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "track17 (17TRACK parcel tracking)",
        "body": "This skill lets Clawdbot keep a local list of your parcels, track their state via the 17TRACK Tracking API v2.2, and summarise changes.\n\nIt stores everything in a small SQLite DB under your workspace (by default: <workspace>/packages/track17/track17.sqlite3).\n\n<workspace> is auto-detected as the parent directory of the nearest skills/ directory that contains this skill.\nFor example, if you install it at /clawd/skills/track17/, data will be stored at /clawd/packages/track17/."
      },
      {
        "title": "Requirements",
        "body": "TRACK17_TOKEN must be set (17TRACK API token; used as the 17token header).\nPython (python3 preferred).\n\nOptional:\n\nTRACK17_WEBHOOK_SECRET if you want to verify webhook signatures.\nTRACK17_DATA_DIR to override where the DB/inbox live.\nTRACK17_WORKSPACE_DIR to override what this tool considers the workspace directory."
      },
      {
        "title": "Quick start",
        "body": "Initialise storage (safe to run multiple times):\n\npython3 {baseDir}/scripts/track17.py init\n\nAdd a package (registers it with 17TRACK and stores it locally):\n\npython3 {baseDir}/scripts/track17.py add \"RR123456789CN\" --label \"AliExpress headphones\"\n\nIf carrier auto-detection fails, specify a carrier code:\n\npython3 {baseDir}/scripts/track17.py add \"RR123456789CN\" --carrier 3011 --label \"...\"\n\nList tracked packages:\n\npython3 {baseDir}/scripts/track17.py list\n\nPoll for updates (recommended if you don't want webhooks):\n\npython3 {baseDir}/scripts/track17.py sync\n\nShow details for one package:\n\npython3 {baseDir}/scripts/track17.py status 1\n# or\npython3 {baseDir}/scripts/track17.py status \"RR123456789CN\""
      },
      {
        "title": "Webhooks (optional)",
        "body": "17TRACK can push updates to a webhook URL. This skill supports webhook ingestion in two ways:"
      },
      {
        "title": "A) Run the included webhook server",
        "body": "python3 {baseDir}/scripts/track17.py webhook-server --bind 127.0.0.1 --port 8789\n\nThen point 17TRACK's webhook URL at that server (ideally via a reverse proxy or Tailscale Funnel)."
      },
      {
        "title": "B) Ingest webhook payloads from stdin/file",
        "body": "cat payload.json | python3 {baseDir}/scripts/track17.py ingest-webhook\n# or\npython3 {baseDir}/scripts/track17.py ingest-webhook --file payload.json\n\nIf you saved webhook deliveries to the inbox directory, process them:\n\npython3 {baseDir}/scripts/track17.py process-inbox"
      },
      {
        "title": "Common actions",
        "body": "Stop tracking:\n\npython3 {baseDir}/scripts/track17.py stop 1\n\nRetrack a stopped parcel:\n\npython3 {baseDir}/scripts/track17.py retrack 1\n\nDelete a parcel from local DB (does not delete at 17TRACK unless you also call delete-remote):\n\npython3 {baseDir}/scripts/track17.py remove 1\n\nShow API quota:\n\npython3 {baseDir}/scripts/track17.py quota"
      },
      {
        "title": "Operating guidance for the agent",
        "body": "Prefer sync (polling) for simplicity unless the user explicitly wants webhooks.\nAfter adding a package, run status once to confirm a valid carrier/status was returned.\nWhen summarising, prioritise:\n\ndelivered/out for delivery\nexception/failed delivery\ncustoms holds\ncarrier handoffs\n\n\nNever echo TRACK17_TOKEN or TRACK17_WEBHOOK_SECRET."
      }
    ],
    "body": "track17 (17TRACK parcel tracking)\n\nThis skill lets Clawdbot keep a local list of your parcels, track their state via the 17TRACK Tracking API v2.2, and summarise changes.\n\nIt stores everything in a small SQLite DB under your workspace (by default: <workspace>/packages/track17/track17.sqlite3).\n\n<workspace> is auto-detected as the parent directory of the nearest skills/ directory that contains this skill. For example, if you install it at /clawd/skills/track17/, data will be stored at /clawd/packages/track17/.\n\nRequirements\nTRACK17_TOKEN must be set (17TRACK API token; used as the 17token header).\nPython (python3 preferred).\n\nOptional:\n\nTRACK17_WEBHOOK_SECRET if you want to verify webhook signatures.\nTRACK17_DATA_DIR to override where the DB/inbox live.\nTRACK17_WORKSPACE_DIR to override what this tool considers the workspace directory.\nQuick start\nInitialise storage (safe to run multiple times):\npython3 {baseDir}/scripts/track17.py init\n\nAdd a package (registers it with 17TRACK and stores it locally):\npython3 {baseDir}/scripts/track17.py add \"RR123456789CN\" --label \"AliExpress headphones\"\n\n\nIf carrier auto-detection fails, specify a carrier code:\n\npython3 {baseDir}/scripts/track17.py add \"RR123456789CN\" --carrier 3011 --label \"...\"\n\nList tracked packages:\npython3 {baseDir}/scripts/track17.py list\n\nPoll for updates (recommended if you don't want webhooks):\npython3 {baseDir}/scripts/track17.py sync\n\nShow details for one package:\npython3 {baseDir}/scripts/track17.py status 1\n# or\npython3 {baseDir}/scripts/track17.py status \"RR123456789CN\"\n\nWebhooks (optional)\n\n17TRACK can push updates to a webhook URL. This skill supports webhook ingestion in two ways:\n\nA) Run the included webhook server\npython3 {baseDir}/scripts/track17.py webhook-server --bind 127.0.0.1 --port 8789\n\n\nThen point 17TRACK's webhook URL at that server (ideally via a reverse proxy or Tailscale Funnel).\n\nB) Ingest webhook payloads from stdin/file\ncat payload.json | python3 {baseDir}/scripts/track17.py ingest-webhook\n# or\npython3 {baseDir}/scripts/track17.py ingest-webhook --file payload.json\n\n\nIf you saved webhook deliveries to the inbox directory, process them:\n\npython3 {baseDir}/scripts/track17.py process-inbox\n\nCommon actions\nStop tracking:\npython3 {baseDir}/scripts/track17.py stop 1\n\nRetrack a stopped parcel:\npython3 {baseDir}/scripts/track17.py retrack 1\n\nDelete a parcel from local DB (does not delete at 17TRACK unless you also call delete-remote):\npython3 {baseDir}/scripts/track17.py remove 1\n\nShow API quota:\npython3 {baseDir}/scripts/track17.py quota\n\nOperating guidance for the agent\nPrefer sync (polling) for simplicity unless the user explicitly wants webhooks.\nAfter adding a package, run status once to confirm a valid carrier/status was returned.\nWhen summarising, prioritise:\ndelivered/out for delivery\nexception/failed delivery\ncustoms holds\ncarrier handoffs\nNever echo TRACK17_TOKEN or TRACK17_WEBHOOK_SECRET."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/tristanmanchester/track17",
    "publisherUrl": "https://clawhub.ai/tristanmanchester/track17",
    "owner": "tristanmanchester",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/track17",
    "downloadUrl": "https://openagent3.xyz/downloads/track17",
    "agentUrl": "https://openagent3.xyz/skills/track17/agent",
    "manifestUrl": "https://openagent3.xyz/skills/track17/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/track17/agent.md"
  }
}