shopping-agent
Shopping Agent
Optimized shopping list from meal plan → Telegram + Discord delivery.
/shopping list
- Load meal plan:
sqlite3 /data/workspace/pantry.db "SELECT plan_json FROM meal_plans ORDER BY created_at DESC LIMIT 1;" 2>/dev/null - Load fridge (to exclude already-owned items):
sqlite3 /data/workspace/pantry.db "SELECT item FROM fridge;" 2>/dev/null - Load best prices:
sqlite3 /data/workspace/pantry.db "SELECT item, store, MIN(price) as price, unit FROM prices GROUP BY item;" 2>/dev/null - Display grouped by store, cheapest first. See
references/display-format.mdfor output format.
More from mary4data/clawbee
meal-planner
Plan weekly family meals based on fridge contents and a budget. Generates a 7-day dinner plan, identifies what to buy vs. what's already in the fridge, and saves the plan. Triggers on: /meals plan, /meals show, /meals pref, weekly meal planning requests, 'what should we eat this week', dinner ideas for the family.
41price-hunter
Search and track grocery prices from Berlin supermarkets (Rewe, Lidl, Aldi). Stores best prices in a local database. Triggers on: /prices search <item>, /prices best <item>, /prices list, 'how much does X cost', 'cheapest X in Berlin', 'find price for', or when looking up grocery costs for meal planning.
31fridge-tracker
Track fridge and pantry inventory. Add, remove, and list food items with quantities. Triggers on: /fridge, /fridge list, /fridge add <item>, /fridge remove <item>, /fridge clear, or when a user asks what's in the fridge or wants to manage pantry contents.
10orchestrator
Run the complete family meal planning pipeline in one command: fridge check → price search → meal plan → Telegram shopping list delivery. Triggers on: /plan, /plan weekly, /plan status, /plan post, /plan help, or when a user wants to run the full meal planning workflow end-to-end.
9fridge-scanner
Scan a fridge or food photo to detect ingredients, look up Berlin supermarket prices, generate a 3-day family meal plan, and send the shopping list to Telegram. Triggers on: /scan, /scan demo, /scan plan, /scan shop, or when a user attaches a fridge/food photo and asks for meal ideas or a shopping list.
5self-improver
Meta-skill that lets the bot audit, test, and auto-improve its own ClawBee skills. Analyzes SKILL.md files, runs test commands, detects failures, and rewrites broken steps. Triggers on: /improve skills, /skills audit, /skills test, /self-improve, /skills fix, 'improve your skills', 'check your skills', 'what skills are broken'.
4