← Back to Skills Marketplace
echojiandong

蛋叔订单商品查询

by echojiandong · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
84
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install cake-order-query
Description
当用户需要查询蛋糕订单信息时使用此技能。通过输入订单号,调用内部API查询对应的蛋糕商品名称。此技能应在下述情况时使用:用户询问"查订单"、"订单查询"、"蛋糕订单"、"查蛋糕"、或直接提供订单号要求查询。技能会自动组装API请求并解析返回结果,提取商品名称返回给用户。
README (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
Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install cake-order-query
  3. After installation, invoke the skill by name or use /cake-order-query
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
蛋糕叔叔订单商品查询技能首发上线: - 支持用户通过订单号查询对应蛋糕商品名称 - 提供自动识别用户"查订单"、"订单查询"、"蛋糕订单"等需求的能力 - 集成企业内部API,自动提取订单号并返回蛋糕商品名称 - 错误时返回API中的提示消息 - 当前接口无需认证,查询流程简化
Metadata
Slug cake-order-query
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is 蛋叔订单商品查询?

当用户需要查询蛋糕订单信息时使用此技能。通过输入订单号,调用内部API查询对应的蛋糕商品名称。此技能应在下述情况时使用:用户询问"查订单"、"订单查询"、"蛋糕订单"、"查蛋糕"、或直接提供订单号要求查询。技能会自动组装API请求并解析返回结果,提取商品名称返回给用户。 It is an AI Agent Skill for Claude Code / OpenClaw, with 84 downloads so far.

How do I install 蛋叔订单商品查询?

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

Is 蛋叔订单商品查询 free?

Yes, 蛋叔订单商品查询 is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does 蛋叔订单商品查询 support?

蛋叔订单商品查询 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created 蛋叔订单商品查询?

It is built and maintained by echojiandong (@echojiandong); the current version is v1.0.0.

💬 Comments