← 返回 Skills 市场
jvy

快递查询

作者 jvy · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
152
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install kuaidi
功能描述
查询中国常见快递公司的官方客服电话、常用联系渠道、投诉与催件路径,并给出延误、长时间不更新、显示签收但未收到、驿站代收、破损、丢件、拒收退回、疑似诈骗短信或电话等常见快递问题的处理建议。Use when the user asks about 顺丰、京东快递、EMS、中通、圆通、申通、韵达、德邦、极兔等快递公司的...
使用说明 (SKILL.md)

Kuaidi Skill

用这个技能处理中文快递问题,目标是把“找电话”和“下一步怎么做”一次说清楚。

核心原则

  • 先判断用户要的是哪一类帮助:
    • 查客服电话或官网渠道
    • 催件 / 投诉
    • 异常状态解释
    • 理赔、拒收、保价、举证准备
    • 识别可疑短信、可疑电话、取件码诈骗
  • 先给最短可执行答案,再补充注意事项。
  • 如果问题涉及具体包裹,优先提醒用户准备:
    • 运单号
    • 收寄件手机号后四位
    • 下单平台和订单号
    • 异常时间线
    • 破损/签收/派送相关截图或照片
  • 不猜实时物流状态。查实时轨迹、客服时间、最新理赔规则时,优先引导到官方 App、官网或热线。

常用任务

1. 查快递公司电话

先用脚本查公司与别名:

node {baseDir}/scripts/kuaidi.js carrier 顺丰
node {baseDir}/scripts/kuaidi.js carrier sf --json
node {baseDir}/scripts/kuaidi.js list

如果用户只问“顺丰电话多少”,直接给:

  • 公司名
  • 官方客服热线
  • 是否有官网 / 在线客服
  • 适合处理什么问题

详细表见 references/carriers.md

2. 给异常件处理步骤

先匹配问题类型,再给 3 到 6 步操作清单:

node {baseDir}/scripts/kuaidi.js issue delay
node {baseDir}/scripts/kuaidi.js issue delivered-missing --json
node {baseDir}/scripts/kuaidi.js issue fraud-check

优先覆盖这些高频场景:

  • delay: 延误、催件、时效明显超预期
  • no-update: 轨迹长时间不更新
  • delivered-missing: 显示已签收但本人没收到
  • station-dropoff: 未经同意投放驿站、快递柜、代收点
  • damaged: 外包装或内件破损
  • lost: 疑似丢件
  • refusal-return: 拒收、退回、逆向件卡住
  • fraud-check: 可疑短信、电话、链接、取件码诈骗

3. 识别该找卖家还是找快递

默认规则:

  • 电商商品质量、错发漏发、退款责任归属:先找卖家或平台售后。
  • 物流停滞、派送异常、网点态度、驿站代收、签收争议:先找承运快递公司。
  • 两边都可能有责任时,分别留痕,不要只走单一渠道。

4. 给投诉升级建议

如果企业客服已建单但迟迟无进展:

  • 先记录客服工单号、时间、承诺时限。
  • 再补齐证据:轨迹截图、短信截图、照片、通话记录时间。
  • 仍无进展时,转向监管申诉渠道或平台侧售后渠道。

这里要避免做法律结论,只给实操建议,不替代正式法律意见。

回复模板

适合直接复用的回答结构:

  1. 先确认承运公司和问题类型。
  2. 给官方热线或官方入口。
  3. 给最短下一步动作。
  4. 提醒要准备的材料。
  5. 涉及实时信息时,明确说明要以官方最新页面为准。

例如:

  • “顺丰客服热线是 95338。先准备运单号和收件手机号后四位,拨打后按异常件/人工服务处理催件。若轨迹超过一天没有变化,再补一张物流轨迹截图留证。”
  • “这个更像‘已签收但未收到’,先联系承运快递核实签收人和投递位置,同时保留门口监控、驿站短信、签收截图;如果未经同意放驿站,可以按未按约定派送投诉。”

参考资料

  • 快递公司电话、官网入口、官方来源链接:references/carriers.md
  • 常见异常件处理清单与回答边界:references/issues.md

注意事项

  • 这个技能适合“快递问题分诊 + 给下一步动作”,不适合编造实时轨迹结果。
  • 电话、服务时间、投诉入口可能变化;如果用户要求“最新”“今天”“现在还能打吗”,必须再核实官方页面。
  • 对理赔金额、法定赔付、平台责任归属,只能给一般性建议;高风险场景要提示用户以最新条款或平台规则为准。
安全使用建议
This skill appears to do what it says: provide courier hotlines and step-by-step handling advice using bundled reference files and a small local Node script. Things to consider before installing: 1) Runtime: the SKILL.md expects you can run `node` but the skill metadata doesn't declare Node as a required binary — ensure your agent environment has Node.js if you want the script examples to work. 2) No secrets are requested and the script does not make network calls, but verify you are comfortable with a bundled script running locally. 3) The skill intentionally avoids realtime tracking and legal conclusions — if you need up-to-the-minute tracking or definitive legal/compensation advice, consult the carrier's official site or a qualified professional. 4) If you want higher assurance, inspect the included files (scripts/kuaidi.js, references/*.md) yourself; they are small and readable.
功能分析
Type: OpenClaw Skill Name: kuaidi Version: 1.0.0 The skill bundle is a legitimate informational tool for querying Chinese courier service contact details and troubleshooting logistics issues. The core logic in `scripts/kuaidi.js` is a simple, self-contained Node.js script that performs lookups against a static, hardcoded database of courier companies and common shipping problems; it contains no network requests, file system modifications, or obfuscated code. The instructions in `SKILL.md` and the reference files are well-structured and strictly aligned with the stated purpose of providing customer service guidance.
能力评估
Purpose & Capability
The name/description (查询快递公司电话与异常处理建议) aligns with the included data files and the script: carriers list, issue handling flows, and reply templates. One minor inconsistency: runtime examples call `node {baseDir}/scripts/kuaidi.js`, but the skill metadata does not declare Node.js as a required binary.
Instruction Scope
SKILL.md stays on-topic: it instructs how to look up hotlines, produce stepwise actions, and point users to official sites for realtime info. It does not instruct reading unrelated system files, sending data to external endpoints, or collecting secrets.
Install Mechanism
There is no install spec and the script is bundled in the repo. No external downloads or archive extraction occur. The script is local and simple (no network calls, no obfuscation).
Credentials
The skill requests no environment variables, no credentials, and no config paths. The data it uses is static reference material (carriers and issues). This is proportionate to its purpose.
Persistence & Privilege
always:false and no special privileges are requested. agents/openai.yaml allows implicit invocation (normal for skills). There is no evidence the skill modifies other skills or system-wide settings.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install kuaidi
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /kuaidi 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
kuaidi 1.0.0 初始发布 - 支持查询中国主流快递公司的官方客服电话及常用联系渠道。 - 针对延误、丢件、签收异常、驿站代收、破损等常见问题,提供分场景的处理与投诉实操建议。 - 内置具体操作步骤(如催件、投诉升级、准备理赔材料)及常见问题应对清单。 - 明确回答边界,不提供实时轨迹、收费报价或法律结论,所有信息以官方为准。 - 推荐每一步操作需准备的基础资料,提醒用户保留证据。
元数据
Slug kuaidi
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

快递查询 是什么?

查询中国常见快递公司的官方客服电话、常用联系渠道、投诉与催件路径,并给出延误、长时间不更新、显示签收但未收到、驿站代收、破损、丢件、拒收退回、疑似诈骗短信或电话等常见快递问题的处理建议。Use when the user asks about 顺丰、京东快递、EMS、中通、圆通、申通、韵达、德邦、极兔等快递公司的... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 152 次。

如何安装 快递查询?

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

快递查询 是免费的吗?

是的,快递查询 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

快递查询 支持哪些平台?

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

谁开发了 快递查询?

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

💬 留言讨论