Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

bijieserv-express必捷快递

Agent Skill

bijieserv-express 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,841

周安装

165

GitHub Stars

公开资料未说明

下载量

1,346
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:bijieserv-express(必捷快递)
来源仓库:https://github.com/huhao19871026/bijieserv-express
安装命令:
openclaw skills install bijieserv-express
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install bijieserv-express

简介

用于查找、检索和筛选快递物流跟踪相关信息。

  • 适合在 OpenClaw 中根据关键词或任务场景快速定位候选结果。
  • 可结合来源仓库和 README 核验具体用法,安装前需确认权限和维护状态。
  • 建议检查是否会触发联网、命令执行或文件读写操作。
  • 适用于通过 BijieServ 查询 2000 多家快递公司物流轨迹的场景。

SKILL.md

name
bijie-express-tracking
description
Fast package tracking and logistics timeline lookup for 2000+ couriers with BijieServ. Use for 查快递, 快递查询, 查物流, 物流轨迹, 快递到哪了, 包裹追踪, track package, where is my package, courier tracking, 顺丰查询, 圆通查询, 中通查询, 韵达查询, 申通查询, 极兔查询, 京东物流查询, EMS查询.

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.

  1. If the user provided a courier, map it to a company code.
  2. 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

  1. Run the local query logic from scripts/express.py.
  2. Return a concise, user-friendly summary:

- courier name - tracking number - current status - latest update - recent timeline - ETA if available

  1. 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.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

94.69%
按下载量换算1,275

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills