← 返回 Skills 市场
huhao19871026

Bijie Express Tracking

作者 huhao19871026 · GitHub ↗ · v1.1.0 · MIT-0
cross-platform ✓ 安全检测通过
134
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install bijieserv-express
功能描述
Fast package tracking and logistics timeline lookup for 2000+ couriers with BijieServ. Use for 查快递, 快递查询, 查物流, 物流轨迹, 快递到哪了, 包裹追踪, track package, where is my...
使用说明 (SKILL.md)

Bijie Express Skill

Fast express tracking, package lookup, and logistics timeline query through BijieServ.

Use this skill for package tracking, courier tracking, shipping status lookup, logistics timeline lookup, and Chinese courier queries such as 顺丰, 圆通, 中通, 韵达, 申通, 极兔, 京东物流, and EMS.

Return a concise user-facing summary with:

  • current package status
  • latest logistics update
  • recent tracking timeline
  • ETA when available
  • masked sensitive data

This skill is written to be easy for both Codex-style agents and OpenClaw-style agents to follow:

  • Prefer deterministic execution over free-form API reconstruction.
  • Reuse the local script when possible.
  • Ask the user for missing information only when needed.

When To Use

Use this skill when the user wants to:

  • check a package status
  • view logistics updates or delivery timeline
  • identify the courier and query a tracking number
  • track common domestic or international carriers supported by BijieServ

Typical requests:

  • 查一下 SF13156789012
  • 帮我查这个快递到哪了
  • track package 123456789
  • 查询圆通/顺丰/中通/韵达/申通/极兔/京东/EMS

Source Of Truth

Prefer these local files in this order:

  1. scripts/express.py: canonical query logic, headers, parameter handling, masking, and response formatting.
  2. references/company-codes.md: courier code lookup table when carrier mapping is uncertain.
  3. This file: behavioral guidance for when to run, what to ask, and how to present results.

If this file conflicts with the script, follow the script.

Execution Policy

  • Prefer running the local script instead of manually composing raw HTTP requests.
  • Treat the script behavior as authoritative for endpoint, headers, payload, and error handling.
  • Do not promise capabilities that are not implemented locally.
  • Mask phone numbers or other sensitive details before showing results to the user.

Inputs

Required:

  • tracking number

Optional:

  • courier name or courier code
  • phone number if the carrier requires extra verification
  • origin or destination hints when needed

Recommended Flow

  1. Extract the tracking number and optional courier name from the user request.
  2. Validate the tracking number at a basic level. A practical baseline is 6 to 32 characters, matching the local script.
  3. If the user provided a courier, map it to a company code.
  4. If the user did not provide a courier:
    • first infer from common prefixes such as SF, YT, ZT, YD, ST, JT, JD
    • if still unclear, consult references/company-codes.md
    • if still unknown, ask the user which courier it is
  5. Run the local query logic from scripts/express.py.
  6. Return a concise, user-friendly summary:
    • courier name
    • tracking number
    • current status
    • latest update
    • recent timeline
    • ETA if available
  7. Apply privacy masking before showing the result.

Output Style

Keep the response compact and practical. Prefer:

  • current status first
  • latest logistics event second
  • recent timeline after that
  • ETA only when the API provides it

Good structure:

  • 状态: 已签收 / 派送中 / 运输中 / 异常件 / 退回中
  • 最新轨迹: the most recent meaningful tracking update
  • 时间线: a short list of recent nodes
  • 预计送达: only if present

Privacy Rules

  • Mask mobile numbers like 138****1234.
  • Avoid exposing full recipient address details.
  • If the upstream response contains sensitive text, sanitize it before presenting it.

Error Handling

Use these handling rules:

  • Invalid tracking number: tell the user the number appears malformed and ask them to re-check it.
  • Unknown courier: ask the user to confirm the courier name.
  • No tracking result: explain that the parcel may not be shipped yet, the number may be wrong, or the carrier may not have updated tracking.
  • Rate limiting or lockout: explain that queries are too frequent and suggest trying again later.
  • Timeout or request failure: tell the user the query failed temporarily and suggest retrying.

Courier Mapping Notes

Common mappings:

  • SF -> shunfeng
  • YT -> yuantong
  • ZT -> zhongtong
  • YD -> yunda
  • ST -> shentong
  • JT -> jtexpress
  • JD -> jd
  • EMS -> ems

For a broader list, use references/company-codes.md.

OpenClaw Compatibility Notes

To keep this skill compatible with OpenClaw-style agents:

  • keep behavior instructions explicit and step-based
  • prefer local files over hidden assumptions
  • avoid requiring agent-specific internal memory
  • do not rely on rich UI formatting to make the result understandable
  • keep the frontmatter short and searchable

If OpenClaw loads only the skill text and not repository code automatically, the agent should explicitly inspect:

  • scripts/express.py
  • references/company-codes.md

Search And Discovery Notes

To improve discoverability on skill hubs such as ClawHub:

  • put the core task words near the top of the file: package tracking, express tracking, logistics query, courier tracking, 查快递, 查物流
  • keep the name and description closely aligned with what users actually search for
  • mention both brand and task intent so users can find the skill by either BijieServ or 快递查询
  • include both Chinese and English task phrases because users may search in either language
  • avoid vague marketing language that does not help the retrieval system understand the skill

Useful search intents covered by this skill:

  • 查快递
  • 快递查询
  • 查物流
  • 物流轨迹
  • 快递到哪了
  • 包裹追踪
  • track package
  • where is my package
  • courier tracking
  • shipping status

Notes

  • Send requests to https://www.bijieserv.com/api/method/express_app.open.v1.query.exec, not skill.bijieserv.com.
  • Keep Origin and Referer aligned with https://www.bijieserv.com/ when following the local script behavior.
  • Do not claim per-user quota tracking, shared cache behavior, or automatic compliance enforcement unless those behaviors are actually implemented in code.
安全使用建议
This skill appears to do exactly what it says: it runs a local Python script that posts tracking numbers (and optional phone/address hints you supply) to bijieserv.com and returns a masked, human-friendly timeline. It does not request secrets or access unrelated system files. Before installing, consider: (1) only provide the minimum personal data needed (avoid sending full recipient addresses or unnecessary phone numbers), (2) verify you trust the external service (bijieserv.com) because tracking queries are sent there, and (3) be aware package.json is present but not used by the Python runtime — it's benign but unnecessary. If you need stronger privacy, avoid supplying recipient phone or full addresses.
功能分析
Type: OpenClaw Skill Name: bijieserv-express Version: 1.1.0 The skill bundle provides legitimate express tracking functionality for numerous couriers via the BijieServ API. The core logic in `scripts/express.py` is well-structured, using the standard `requests` library to query `https://www.bijieserv.com`, and includes proactive privacy features such as regex-based phone number masking. No evidence of data exfiltration, unauthorized file access, or malicious prompt injection was found.
能力标签
crypto
能力评估
Purpose & Capability
The name/description (package tracking via BijieServ) match the included script and SKILL.md: the Python script posts tracking numbers to bijieserv.com and formats results. No unrelated credentials, binaries, or config paths are requested.
Instruction Scope
SKILL.md is focused on extracting tracking data, mapping couriers, running the local script, masking sensitive fields, and returning concise results. It does not instruct the agent to read unrelated files, harvest environment variables, or send data to unexpected endpoints.
Install Mechanism
There is no install spec (instruction-only), so nothing is automatically downloaded or written at install time. The repo includes package.json/package-lock (Node deps) even though the runtime uses a Python script; this is unnecessary but not harmful by itself.
Credentials
The skill requests no environment variables, credentials, or config paths. The only external interaction is HTTP POST to https://www.bijieserv.com which is appropriate for a tracking service. It does accept optional phone/origin/destination inputs from the user (documented).
Persistence & Privilege
The skill is not marked always:true and does not persist or modify system/global configurations. Query history is kept in-memory only for short-term anti-rate-limit checks.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install bijieserv-express
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /bijieserv-express 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.1.0
Publish with https://www.bijieserv.com API, improve OpenClaw compatibility, and strengthen search metadata.
v1.0.0
- Initial release of bijie-express skill for free package tracking across 2000+ domestic and international couriers. - Supports automatic courier recognition by tracking number prefix, with no need for manual company selection. - Provides human-friendly logistics status, current location, transit nodes, and estimated delivery time. - Ensures privacy by masking phone numbers and filtering sensitive address details in all returned results. - Includes built-in usage limits and friendly error messages for frequent or duplicate queries.
元数据
Slug bijieserv-express
版本 1.1.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 2
常见问题

Bijie Express Tracking 是什么?

Fast package tracking and logistics timeline lookup for 2000+ couriers with BijieServ. Use for 查快递, 快递查询, 查物流, 物流轨迹, 快递到哪了, 包裹追踪, track package, where is my... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 134 次。

如何安装 Bijie Express Tracking?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install bijieserv-express」即可一键安装,无需额外配置。

Bijie Express Tracking 是免费的吗?

是的,Bijie Express Tracking 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Bijie Express Tracking 支持哪些平台?

Bijie Express Tracking 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Bijie Express Tracking?

由 huhao19871026(@huhao19871026)开发并维护,当前版本 v1.1.0。

💬 留言讨论