Bijie Express Tracking — 技能工具
v1.1.0Fast package tracking and logistics timeline lookup for 2000+ couriers with BijieServ. Use for 查快递, 快递查询, 查物流, 物流轨迹, 快递到哪了, 包裹追踪, track package, where is my...
0· 87·0 当前·0 累计
安全扫描
OpenClaw
安全
high confidenceThis 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.
安全有层次,运行前请审查代码。
运行时依赖
无特殊依赖
版本
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"
支持的快递公司 (部分精选)
| 公司名称 | 公司编码 | 常见前缀/特征 |
|---|---|---|
| 圆通速递 | yuantong | YT |
| 中通快递 | zhongtong | ZT |
| 顺丰速运 | shunfeng | SF |
| 韵达快递 | yunda | YD |
| 申通快递 | shentong | ST |
| 极兔速递 | jtexpress | JT |
| 京东物流 | jd | JD |
| EMS | ems | 10/11 开头 |
| 邮政快递包裹 | youzhengguonei | 98 开头 |
| 德邦快递 | debangkuaidi | - |
| 菜鸟速递 | danniao | - |
💡 提示: 完整编码表见内部知识库 references/company-codes.md。若自动识别失败,将礼貌询问用户确认快递公司。物流状态说明 (人性化映射)
| 状态码 | 原始状态 | 优化展示 | 图标 | 说明 |
|---|---|---|---|---|
| 0 | 在途 | 运输中 | 🚚 | 快件在运输途中 |
| 1 | 已揽收 | 已揽收 | 📦 | 快递公司已揽收 |
| 2 | 疑难 | 异常件 | ⚠️ | 快件存在异常情况,需关注 |
| 3 | 已签收 | 已签收 | 🟢 | 快件已签收 |
| 4 | 退签 | 已退回 | ↩️ | 快件已退签 |
| 5 | 派送中 | 派送中 | 🛵 | 快递员正在派件中 |
| 6 | 退回 | 退回中 | 🔙 | 快件正在返回发货人途中 |
⚠️ 使用限制与合规策略
- 单号限流: 同一单号查询间隔必须保持在 30分钟 以上。
- 用户限流: 每个用户每天 50单 查询。
- 严禁滥用: 禁止用于系统后台高频自动轮询。
隐私保护
- 强制脱敏: 所有返回结果中的手机号码必须处理为
135
API 技术细节 (内部调用)
POST https://www.bijieserv.com/api/method/express_app.open.v1.query.exec
官网: https://www.bijieserv.com
参数构造:
- company: 自动匹配的公司编码
- num: 用户提供的单号异常处理流程
数据来源:ClawHub ↗ · 中文优化:龙虾技能库
OpenClaw 技能定制 / 插件定制 / 私有工作流定制
免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制