← 返回 Skills 市场
echojiandong

蛋叔订单商品查询

作者 echojiandong · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
84
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install cake-order-query
功能描述
当用户需要查询蛋糕订单信息时使用此技能。通过输入订单号,调用内部API查询对应的蛋糕商品名称。此技能应在下述情况时使用:用户询问"查订单"、"订单查询"、"蛋糕订单"、"查蛋糕"、或直接提供订单号要求查询。技能会自动组装API请求并解析返回结果,提取商品名称返回给用户。
使用说明 (SKILL.md)

\r

蛋糕叔叔订单商品查询技能\r

\r

技能概述\r

\r 本技能用于通过订单号查询蛋糕商品名称,调用企业内部蛋糕订单系统API获取信息。\r \r

使用场景\r

\r

  • 用户说"帮我查一下订单"\r
  • 用户说"订单查询"\r
  • 用户说"蛋糕订单"\r
  • 用户说"查蛋糕"\r
  • 用户直接提供订单号要求查询\r \r

API 接口信息\r

\r 接口地址: https://trade.dangaoss.cn/cake_api/ck_orders\r \r 请求方式: GET\r \r 请求参数:\r | 参数名 | 类型 | 必填 | 说明 |\r |--------|------|------|------|\r | order_id | string | 是 | 订单号 |\r \r 示例请求:\r

GET https://trade.dangaoss.cn/cake_api/ck_orders?order_id=43\r
```\r
\r
## 响应格式\r
\r
**成功响应示例:**\r
```json\r
{\r
    "code": 200,\r
    "msg": "获取成功",\r
    "data": "蓝莓千层拿破仓 Blueberry Mille-feuilles"\r
}\r
```\r
\r
**响应字段说明:**\r
| 字段 | 类型 | 说明 |\r
|------|------|------|\r
| code | int | 状态码,200表示成功 |\r
| msg | string | 响应消息 |\r
| data | string | 蛋糕商品名称 |\r
\r
## 执行流程\r
\r
1. **提取订单号**:从用户输入中识别订单号\r
2. **调用API**:使用 `https://trade.dangaoss.cn/cake_api/ck_orders?order_id={订单号}` 获取数据\r
3. **解析响应**:判断 code 是否为 200\r
4. **返回结果**:\r
   - 成功时,返回商品名称\r
   - 失败时,返回错误消息(msg字段)\r
\r
## 示例对话\r
\r
**用户:** "帮我查一下订单43"\r
\r
**助手:** "订单43对应的蛋糕是:**蓝莓千层拿破仓 Blueberry Mille-feuilles**"\r
\r
**用户:** "查蛋糕订单"\r
\r
**助手:** "请提供您要查询的订单号"\r
\r
**用户:** "订单号是88"\r
\r
**助手:** "订单88对应的蛋糕是:**草莓慕斯蛋糕 Strawberry Mousse Cake**"\r
\r
## 注意事项\r
\r
- 当前接口无需认证(测试模式)\r
- 订单号必须是有效数字\r
- 如返回非200状态码,直接展示 msg 中的错误信息\r
安全使用建议
This skill appears coherent and low-risk, but consider these practical checks before installing: 1) Confirm the API domain (trade.dangaoss.cn) is a trusted internal or partner endpoint—the skill will send user-provided order numbers to that server. 2) Verify privacy rules: order IDs or associated PII may be transmitted; ensure that sending them to this endpoint is acceptable. 3) The SKILL.md says the API needs no authentication (test mode); ask the provider if production requires credentials or if behavior will change. 4) Ensure your platform validates TLS certificates for that host. 5) Because the skill is instruction-only, the code isn’t present for review — if you need higher assurance, ask the publisher for an endpoint SLA, example traffic, or a signed manifest. If any of these checks fail or you don’t recognize the domain, treat the skill as untrusted and do not enable it.
功能分析
Type: OpenClaw Skill Name: cake-order-query Version: 1.0.0 The skill is a standard integration designed to query cake order product names from a legitimate service domain (trade.dangaoss.cn) using an order ID. It contains no evidence of data exfiltration, malicious execution, or prompt injection; the lack of authentication is explicitly noted as a test mode feature and the scope of data accessed is limited to product names.
能力评估
Purpose & Capability
The name/description (query cake order by order number) matches the instructions: the SKILL.md only needs to assemble a GET request to a single orders API and parse the response. No unexpected binaries, credentials, or config paths are requested.
Instruction Scope
Runtime instructions are narrowly scoped: extract an order_id from the user input, call https://trade.dangaoss.cn/cake_api/ck_orders?order_id={id}, check code==200 and return data or msg. The instructions do not ask the agent to read files, other environment variables, or transmit unrelated data.
Install Mechanism
This is an instruction-only skill with no install spec and no code files, so nothing will be written to disk during install. Low install risk.
Credentials
The skill declares no required environment variables or credentials, which is consistent with the SKILL.md statement that the endpoint is in 'test mode' and requires no auth. No unrelated secrets are requested.
Persistence & Privilege
always is false and the skill is user-invocable/autonomously callable by default. It does not request persistent system changes or configuration writes and does not claim elevated privileges.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install cake-order-query
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /cake-order-query 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
蛋糕叔叔订单商品查询技能首发上线: - 支持用户通过订单号查询对应蛋糕商品名称 - 提供自动识别用户"查订单"、"订单查询"、"蛋糕订单"等需求的能力 - 集成企业内部API,自动提取订单号并返回蛋糕商品名称 - 错误时返回API中的提示消息 - 当前接口无需认证,查询流程简化
元数据
Slug cake-order-query
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

蛋叔订单商品查询 是什么?

当用户需要查询蛋糕订单信息时使用此技能。通过输入订单号,调用内部API查询对应的蛋糕商品名称。此技能应在下述情况时使用:用户询问"查订单"、"订单查询"、"蛋糕订单"、"查蛋糕"、或直接提供订单号要求查询。技能会自动组装API请求并解析返回结果,提取商品名称返回给用户。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 84 次。

如何安装 蛋叔订单商品查询?

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

蛋叔订单商品查询 是免费的吗?

是的,蛋叔订单商品查询 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

蛋叔订单商品查询 支持哪些平台?

蛋叔订单商品查询 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 蛋叔订单商品查询?

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

💬 留言讨论