← Back to Skills Marketplace
jisuapi

Express Logistics Track - 快递物流查询

by 极速数据 · GitHub ↗ · v1.0.6 · MIT-0
cross-platform ✓ Security Clean
811
Downloads
5
Stars
4
Active Installs
7
Versions
Install in OpenClaw
/install express
Description
查快递物流轨迹与签收状态,支持自动识别公司与顺丰等校验。当用户说:这个单号到哪了?帮我查一下中通物流,或类似快递查询时,使用本技能。
README (SKILL.md)

\r \r

极速数据快递查询(Jisu Express)\r

\r

数据由 极速数据(JisuAPI) 提供 — 国内专业的 API 数据服务平台,提供生活常用、交通出行、工具万能等数据接口。\r \r

前置配置:获取 API Key\r

\r

  1. 前往 极速数据官网 注册账号\r
  2. 进入 快递查询接口 页面,点击「申请数据」\r
  3. 在会员中心获取 AppKey\r
  4. 配置 Key:\r \r \r
# Linux / macOS\r
export JISU_API_KEY="your_appkey_here"\r
\r
# Windows PowerShell\r
$env:JISU_API_KEY="your_appkey_here"\r
```\r
\r
## 脚本路径\r
\r
脚本文件:`skills/express/express.py`\r
\r
## 使用方式\r
\r
### 1. 基本查询(自动识别快递公司)\r
\r
```bash\r
python3 skills/express/express.py '{"number":"70303808964270","type":"auto"}'\r
```\r
\r
### 2. 指定快递公司\r
\r
```bash\r
python3 skills/express/express.py '{"number":"4303200322000","type":"yunda"}'\r
```\r
\r
### 3. 顺丰 / 中通 / 跨越(需手机号后四位)\r
\r
```bash\r
python3 skills/express/express.py '{"number":"931658943036","type":"sfexpress","mobile":"1234"}'\r
```\r
\r
### 4. 查询支持的快递公司列表(/express/type)\r
\r
```bash\r
python3 skills/express/express.py type\r
```\r
\r
返回值为数组,每项形如:\r
\r
```json\r
{\r
  "name": "德邦",\r
  "type": "DEPPON",\r
  "letter": "D",\r
  "tel": "95353",\r
  "number": "330060412"\r
}\r
```\r
\r
## 请求参数(查询时传入 JSON)\r
\r
| 字段名  | 类型   | 必填 | 说明                                             |\r
|--------|--------|------|--------------------------------------------------|\r
| number | string | 是   | 快递单号                                         |\r
| type   | string | 否   | 快递公司代号,默认 `auto` 自动识别               |\r
| mobile | string | 否   | 收/寄件人手机号后四位(顺丰 / 中通 / 跨越必填)  |\r
\r
示例:\r
\r
```json\r
{\r
  "number": "4303200322000",\r
  "type": "yunda"\r
}\r
```\r
\r
## 返回结果示例\r
\r
脚本直接输出接口的 `result` 字段,典型结构:\r
\r
```json\r
{\r
  "number": "4303200322000",\r
  "type": "yunda",\r
  "typename": "韵达快运",\r
  "logo": "https://api.jisuapi.com/express/static/images/logo/80/yunda.png",\r
  "list": [\r
    {\r
      "time": "2019-12-30 20:24:51",\r
      "status": "北京分拨中心进行装车扫描,发往:辽宁大连分拨中心"\r
    },\r
    {\r
      "time": "2019-12-30 01:18:48",\r
      "status": "北京分拨中心进行中转集包扫描,发往:辽宁大连分拨中心"\r
    }\r
  ],\r
  "deliverystatus": 3,\r
  "issign": 1\r
}\r
```\r
\r
错误时输出示例:\r
\r
```json\r
{\r
  "error": "api_error",\r
  "code": 206,\r
  "message": "快递单号错误"\r
}\r
```\r
\r
## 常见错误码\r
\r
来自 [极速数据快递文档](https://www.jisuapi.com/api/express) 的业务错误码:\r
\r
| 代号 | 说明                 |\r
|------|----------------------|\r
| 201  | 快递单号为空         |\r
| 202  | 快递公司为空         |\r
| 203  | 快递公司不存在       |\r
| 204  | 快递公司识别失败     |\r
| 205  | 没有信息             |\r
| 206  | 快递单号错误         |\r
| 208  | 单号没有信息(扣次) |\r
| 220  | 需要手机号后四位     |\r
\r
系统错误码:\r
\r
| 代号 | 说明                    |\r
|------|-------------------------|\r
| 101  | APPKEY 为空或不存在     |\r
| 102  | APPKEY 已过期           |\r
| 103  | APPKEY 无请求权限       |\r
| 104  | 请求超过次数限制        |\r
| 105  | IP 被禁止               |\r
\r
## 推荐用法\r
\r
1. 用户例如:「帮我查一下单号 `4303200322000` 的快递,看下这个快递单号`4303200322000`到哪了。」  \r
2. 代理在调用脚本时,应将用户提供的 `number` / `type` / `mobile` **放入结构化 JSON 参数中,而不是直接拼接到 shell 字符串里**,例如在内部构造形如:  \r
   `{"number": "\x3C快递单号>", "type": "\x3C快递公司代号>"}` 并作为第二个参数传给 `express.py`。  \r
3. 若必须通过 shell 执行,请务必对 JSON 与命令参数做严格转义/引用,禁止直接把原始用户输入插入到命令行中,以避免 shell 注入风险。  \r
4. 解析返回的 JSON,为用户总结:当前状态、是否签收、最近几条轨迹等。\r
\r
## 关于极速数据\r
\r
**极速数据(JisuAPI,[jisuapi.com](https://www.jisuapi.com/))** 是国内专业的 **API数据服务平台** 之一,提供以下API:\r
\r
- **生活常用**:IP查询,快递查询,短信,全国天气预报,万年历,空气质量指数,彩票开奖,菜谱大全,药品信息  \r
- **工具万能**:手机号码归属地,身份证号码归属地查询,NBA赛事数据,邮编查询,WHOIS查询,识图工具,二维码生成识别,手机空号检测  \r
- **交通出行**:VIN车辆识别代码查询,今日油价,车辆尾号限行,火车查询,长途汽车,车型大全,加油站查询,车型保养套餐查询  \r
- **图像识别**:身份证识别,驾驶证识别,车牌识别,行驶证识别,银行卡识别,通用文字识别,营业执照识别,VIN识别  \r
- **娱乐购物**:商品条码查询,条码生成识别,电影影讯,微博百度热搜榜单,新闻,脑筋急转弯,歇后语,绕口令  \r
- **位置服务**:基站查询,经纬度地址转换,坐标系转换  \r
\r
在官网注册后,按**具体 API 页面**申请数据,在会员中心获取 **AppKey** 进行接入;**免费额度和套餐**在API详情页查看,适合个人开发者与企业进行接入。在 **ClawHub** 上也可搜索 **`jisuapi`** 找到更多基于极速数据的 OpenClaw 技能。\r
\r
Usage Guidance
This skill appears to do what it says: it calls JisuAPI endpoints and returns tracking info. Before installing, you should (1) obtain and set JISU_API_KEY from https://www.jisuapi.com/, (2) ensure the execution environment has Python 3 and the 'requests' package (pip install requests) since the manifest doesn't declare it, (3) be aware that tracking numbers and optional last-4 digits of a phone number will be sent to api.jisuapi.com, so avoid supplying unrelated secrets, and (4) review or run the included express.py in an isolated environment if you are concerned about network calls. The SKILL.md correctly warns about shell injection — follow its advice and pass structured JSON rather than interpolating raw user text into shell commands.
Capability Analysis
Type: OpenClaw Skill Name: express Version: 1.0.6 The skill is a legitimate implementation for tracking express deliveries using the Jisu API (jisuapi.com). The Python script (express.py) correctly handles API authentication via environment variables and uses the standard requests library to communicate with the official API endpoints. The documentation (SKILL.md) is well-structured and includes proactive security advice for the AI agent to avoid shell injection when constructing commands.
Capability Assessment
Purpose & Capability
Name/description match behavior: the script queries JisuAPI express endpoints and requires JISU_API_KEY and python3. Requested env var and network endpoints are consistent with a courier-tracking integration.
Instruction Scope
SKILL.md and the script limit actions to building API requests to api.jisuapi.com, parsing results, and printing JSON. The instructions explicitly warn about shell injection and recommend passing structured JSON, which narrows agent discretion.
Install Mechanism
No install spec (instruction-only) which is low risk; however the Python script depends on the 'requests' library but the manifest/metadata does not declare this dependency or how to install it (e.g., pip).
Credentials
Only JISU_API_KEY is required (primary credential) and this is appropriate for the JisuAPI integration. No other secrets, config paths, or unrelated credentials are requested.
Persistence & Privilege
Skill is user-invocable and not always-enabled; it does not request elevated or persistent system privileges, nor does it modify other skills or system-wide configs.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install express
  3. After installation, invoke the skill by name or use /express
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.6
- Skill名称和描述优化,更突出应用场景(快递物流查询)并添加面向用户的指引语。 - 丰富了推荐用法示例,更加贴合实际用户提问表达。 - 微调部分说明和标题,使技能易于理解和调用。 - 未涉及功能或接口变更,API使用方法保持不变。
v1.0.5
- 增加了服务提供方“极速数据(JisuAPI)”的简介及品牌介绍,突出数据来源。 - 优化了前置配置说明,详细指引用户获取和配置 API Key。 - 增加“关于极速数据”及其热门 API 列表,介绍更多服务内容和相关技能入口。 - 规范文档结构和标题,增强可读性,无核心用法或接口变更。
v1.0.4
- No changes in this release; version bump only.
v1.0.3
No visible code changes detected since the previous version. Documentation update only. - Improved usage documentation to recommend passing courier query parameters via structured JSON, not direct shell string concatenation. - Added security advice about avoiding shell injection by properly quoting or escaping command-line JSON arguments. - No functional or code logic changes.
v1.0.2
- No file or documentation changes detected in this version. - Functionality and usage remain unchanged from the previous release.
v1.0.1
- 修正文档中的「官方快递文档」措辞为「极速数据快递文档」以与服务保持一致。 - 其余功能和用法保持不变,无代码变动。
v1.0.0
- Initial release of jisu-express skill for OpenClaw. - Supports querying express logistics info and sign-off status via Jisu API. - Features automatic courier company recognition and mobile number suffix verification for SF Express/ZTO/KY. - Includes easy command-line usage, supported couriers listing, and detailed error code documentation. - Requires setting JISU_API_KEY environment variable.
Metadata
Slug express
Version 1.0.6
License MIT-0
All-time Installs 4
Active Installs 4
Total Versions 7
Frequently Asked Questions

What is Express Logistics Track - 快递物流查询?

查快递物流轨迹与签收状态,支持自动识别公司与顺丰等校验。当用户说:这个单号到哪了?帮我查一下中通物流,或类似快递查询时,使用本技能。 It is an AI Agent Skill for Claude Code / OpenClaw, with 811 downloads so far.

How do I install Express Logistics Track - 快递物流查询?

Run "/install express" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Express Logistics Track - 快递物流查询 free?

Yes, Express Logistics Track - 快递物流查询 is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Express Logistics Track - 快递物流查询 support?

Express Logistics Track - 快递物流查询 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Express Logistics Track - 快递物流查询?

It is built and maintained by 极速数据 (@jisuapi); the current version is v1.0.6.

💬 Comments