Order skill
Skill TencentCloudBase/awesome-miniprogram-skills/skills/order-skill
外卖点餐:搜索餐厅、浏览菜单、下单支付、配送跟踪From its SKILL.md
npx -y skills add TencentCloudBase/awesome-miniprogram-skills --skill order-skillAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
SKILL.md
1.8 KB, 618 tokens by cl100k_base, as published. Nobody here has run it
外卖点餐
基于餐厅列表完成餐厅搜索、菜单浏览、线上下单与配送状态查询的能力集合。
触发场景
用户原话举例(路由命中本技能):
- "帮我点个外卖"
- "附近有什么好吃的餐厅"
- "我想吃汉堡/川菜/日料"
- "看看这家店有什么菜"
- "我要下单"
- "我的外卖到哪了"
- "帮我查一下订单配送状态"
不适用范围
- 门店排队取号、排队进度查询 → 不在本技能范围,由排队取号技能处理
- 饮品点单、规格选择等 → 不在本技能范围,由饮品点单技能处理
- 待办事项、提醒设置等 → 不在本技能范围,由待办技能处理
- 地图导航、路线规划、电话联系餐厅等 → 不在本技能范围
前置条件
- 用户需在可用配送范围内
- 查询配送状态前需先完成下单拿到订单号
接口链路
searchRestaurants:餐厅搜索与候选餐厅列表展示。getMenuItems:查看指定餐厅的菜单与菜品列表。placeOrder:选择菜品后提交订单(需配送地址和联系电话)。getOrderStatus:基于真实订单号查询配送进度与骑手信息。
使用顺序
- 点餐前需先确定具体餐厅;没有餐厅上下文时,先展示附近餐厅列表,再查看该餐厅菜单。
- 下单前需先查看菜单并选择菜品;确认购物车、配送地址和联系电话后再执行下单。
- 查询配送状态前需先拿到有效订单号;没有有效订单时,不能直接查询配送进度。
- 所有已绑定组件的接口都应优先展示卡片,不要改成纯文本逐条展开。
What ships with it: 29 files
79.2 KB alongside SKILL.md, 12 of them executable
apis/
- getMenuItems.jsruns2.3 KB
- getOrderStatus.jsruns1.3 KB
- placeOrder.jsruns2.9 KB
- searchRestaurants.jsruns1.6 KB
cloudfunctions/
- order-skill-handler/index.jsruns10.3 KB
- order-skill-handler/package.json177 B
components/
- menu-list-card/index.jsruns3.5 KB
- menu-list-card/index.json49 B
- menu-list-card/index.wxml1.1 KB
- menu-list-card/index.wxss2.2 KB
- order-confirm-card/index.jsruns4.0 KB
- order-confirm-card/index.json49 B
- order-confirm-card/index.wxml2.1 KB
- order-confirm-card/index.wxss3.2 KB
- order-status-card/index.jsruns1.8 KB
- order-status-card/index.json49 B
- order-status-card/index.wxml2.2 KB
- order-status-card/index.wxss3.7 KB
- restaurant-list-card/index.jsruns3.3 KB
- restaurant-list-card/index.json49 B
- restaurant-list-card/index.wxml1.4 KB
- restaurant-list-card/index.wxss2.5 KB
data/
- seed.jsruns10.2 KB
utils/
- util.jsruns2.3 KB
- cloudbaserc.json737 B
- index.jsruns1.1 KB
- mcp.json12.8 KB
- mp-skills.json154 B
- README.md2.3 KB