orchestrator

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Meal Planning Orchestrator

餐食规划编排器

Full pipeline: fridge → prices → plan → Telegram. One command does it all.
全流程:冰箱→价格→规划→Telegram,一个命令即可完成所有操作。

/plan weekly [budget]

/plan weekly [budget]

Default budget: €100. Announce each step as you go.
Step 1/4 — Fridge Check
bash
sqlite3 /data/workspace/pantry.db "SELECT item, quantity FROM fridge;" 2>/dev/null
Step 2/4 — Price Search Web search current Berlin prices for: pasta, chicken, ground beef, salmon, lentils, rice, potatoes, tomatoes. Query:
"[item] price supermarket Berlin 2025 Rewe Lidl Aldi"
Step 3/4 — Generate Plan Create a 7-day dinner plan within €[budget]. Use fridge contents from Step 1, prices from Step 2.
Step 4/4 — Send to Telegram
json
{"action":"send","channel":"telegram","to":"$TELEGRAM_CHAT_ID","message":"*Weekly Shopping List*\n\n[items with prices]\n\n*Total: €[amount]*\n\n_Family Meal Planner_"}
End with: "Pipeline complete! [N] items, ~€[total]. Run
/plan post
to share to Discord."
默认预算:€100,执行时同步播报每个步骤。
步骤 1/4 — 冰箱库存检查
bash
sqlite3 /data/workspace/pantry.db "SELECT item, quantity FROM fridge;" 2>/dev/null
步骤 2/4 — 价格查询 网页搜索柏林当前的意面、鸡肉、牛肉馅、三文鱼、扁豆、大米、土豆、番茄价格。 查询词:
"[item] price supermarket Berlin 2025 Rewe Lidl Aldi"
步骤 3/4 — 生成餐单 在€[budget]预算范围内生成7天晚餐规划,使用步骤1获取的冰箱库存、步骤2获取的价格数据。
步骤 4/4 — 发送到Telegram
json
{"action":"send","channel":"telegram","to":"$TELEGRAM_CHAT_ID","message":"*Weekly Shopping List*\n\n[items with prices]\n\n*Total: €[amount]*\n\n_Family Meal Planner_"}
结束时输出:"流程完成!共[N]件商品,总金额约€[total]。运行
/plan post
可分享到Discord。"

/plan status

/plan status

bash
sqlite3 /data/workspace/pantry.db "SELECT COUNT(*) FROM fridge; SELECT week, budget FROM meal_plans ORDER BY created_at DESC LIMIT 1;" 2>/dev/null
Show: fridge item count, latest plan week and budget.
bash
sqlite3 /data/workspace/pantry.db "SELECT COUNT(*) FROM fridge; SELECT week, budget FROM meal_plans ORDER BY created_at DESC LIMIT 1;" 2>/dev/null
展示内容:冰箱商品数量,最新餐单对应的周数和预算。

/plan post

/plan post

Post to Discord:
json
{"action":"send","channel":"discord","to":"channel:$DISCORD_CHANNEL_ID","message":"**This Week's Family Meal Plan**\n\n[7-day plan]\n\nReact with ✅ if you approve!"}
发布到Discord:
json
{"action":"send","channel":"discord","to":"channel:$DISCORD_CHANNEL_ID","message":"**This Week's Family Meal Plan**\n\n[7-day plan]\n\nReact with ✅ if you approve!"}

/plan help

/plan help

See
references/all-commands.md
for the full command reference across all ClawBee skills.
查看
references/all-commands.md
获取所有ClawBee技能的完整命令参考。