首页龙虾技能列表 › Bijie Express Tracking — 技能工具

Bijie Express Tracking — 技能工具

v1.1.0

Fast package tracking and logistics timeline lookup for 2000+ couriers with BijieServ. Use for 查快递, 快递查询, 查物流, 物流轨迹, 快递到哪了, 包裹追踪, track package, where is my...

0· 87·0 当前·0 累计
by @huhao19871026·MIT-0
下载技能包
License
MIT-0
最后更新
2026/4/8
安全扫描
VirusTotal
无害
查看报告
OpenClaw
安全
high confidence
This skill's code, runtime instructions, and external requests are consistent with a package-tracking integration that queries BijieServ and do not ask for unrelated credentials or system access.
评估建议
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 trackin...
详细分析 ▾
用途与能力
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.
指令范围
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.
安装机制
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.
凭证需求
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).
持久化与权限
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.
安全有层次,运行前请审查代码。

License

MIT-0

可自由使用、修改和再分发,无需署名。

运行时依赖

无特殊依赖

版本

latestv1.1.02026/3/24

Publish with https://www.bijieserv.com API, improve OpenClaw compatibility, and strengthen search metadata.

● 无害

安装命令 点击复制

官方npx clawhub@latest install bijieserv-express
镜像加速npx clawhub@latest install bijieserv-express --registry https://cn.clawhub-mirror.com

技能文档

基于必捷物流平台的免费快递查询服务,支持2000+国内外快递公司。具备智能单号识别状态人性化解读隐私自动脱敏限流友好提示功能。

核心能力

  • 智能识别:根据单号前缀自动匹配快递公司,无需用户手动指定(如 YT 自动识别为圆通)。
  • 状态解读:将原始状态码转换为直观的图标和文字(如 🟢 已签收, 🚚 派送中)。
  • 隐私保护:返回结果中的手机号自动脱敏(例:138*1234)。
  • 合规提示:主动监测查询频率,对高频查询或重复查询提供友好的限流提示。

快速开始

调用逻辑

智能体将直接构建 API 请求,无需用户运行脚本。
  • 输入:快递单号(必填),快递公司名称(选填,若不填则尝试自动识别)。
  • 输出:当前状态、最新轨迹、完整物流时间轴、预计到达时间(如有)。

示例交互

用户: "查一下 SF13156789012"
助手: "正在为您查询顺丰速运 (SF13156789012)...
🟢
状态: 已签收
📍
最新轨迹: 已交由【某某】代收,感谢使用顺丰速运。
签收时间: 2023-10-27 14:30"

支持的快递公司 (部分精选)

公司名称公司编码常见前缀/特征
圆通速递yuantongYT
中通快递zhongtongZT
顺丰速运shunfengSF
韵达快递yundaYD
申通快递shentongST
极兔速递jtexpressJT
京东物流jdJD
EMSems10/11 开头
邮政快递包裹youzhengguonei98 开头
德邦快递debangkuaidi-
菜鸟速递danniao-
💡 提示: 完整编码表见内部知识库 references/company-codes.md。若自动识别失败,将礼貌询问用户确认快递公司。

物流状态说明 (人性化映射)

状态码原始状态优化展示图标说明
0在途运输中🚚快件在运输途中
1已揽收已揽收📦快递公司已揽收
2疑难异常件⚠️快件存在异常情况,需关注
3已签收已签收🟢快件已签收
4退签已退回↩️快件已退签
5派送中派送中🛵快递员正在派件中
6退回退回中🔙快件正在返回发货人途中

⚠️ 使用限制与合规策略

  • 单号限流: 同一单号查询间隔必须保持在 30分钟 以上。
- 策略: 若检测到30分钟内重复查询同一单号,优先返回缓存结果或提示“为避免触发限流,建议稍后再试”。
  • 用户限流: 每个用户每天 50单 查询。
-
策略: 接近限额时主动提醒用户。
  • 严禁滥用: 禁止用于系统后台高频自动轮询。

隐私保护

  • 强制脱敏: 所有返回结果中的手机号码必须处理为 1351386 格式。
  • 敏感信息过滤: 不展示收件人完整地址,仅展示到区/县或具体网点。

API 技术细节 (内部调用)

  • 端点: POST https://www.bijieserv.com/api/method/express_app.open.v1.query.exec
  • 官网: https://www.bijieserv.com
  • 参数构造:
- company: 自动匹配的公司编码 - num: 用户提供的单号

异常处理流程

  • 单号无效: 提示“单号格式似乎有误,请检查后重试”。
  • 公司未知: 提示“未能自动识别该单号所属公司,请问是哪家快递?(如:顺丰、圆通)”。
  • 无物流信息: 提示“暂未查询到该单号的物流信息,可能是刚下单或单号有误”。
  • 接口限流*: 提示“查询过于频繁,请稍等片刻再试”。
数据来源:ClawHub ↗ · 中文优化:龙虾技能库
OpenClaw 技能定制 / 插件定制 / 私有工作流定制

免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制

了解定制服务