price-hunter
Original:🇺🇸 English
Translated
2 scriptsChecked / no sensitive code detected
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.
3installs
Sourcemary4data/clawbee
Added on
NPX Install
npx skill4agent add mary4data/clawbee price-hunterTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Price Hunter
Find and track the best grocery prices in Berlin.
Setup
bash
bash skills/price-hunter/scripts/init-db.shCommands
/prices search <item>
/prices search <item>- Web search:
"[item] price supermarket Berlin Germany Rewe Lidl Aldi 2025" - Extract prices for 2–3 stores. See for typical ranges.
references/berlin-prices.md - Save results:
bash
bash skills/price-hunter/scripts/save-price.sh '[item]' '[store]' [price] '[unit]' - Display sorted cheapest first:
Prices for pasta (500g): • Aldi: €0.89 • Lidl: €0.99 • Rewe: €1.29 Cheapest: Aldi
/prices best <item>
/prices best <item>bash
sqlite3 /data/workspace/pantry.db "SELECT store, price, unit FROM prices WHERE item='[item]' ORDER BY price ASC LIMIT 1;"Reply: "Best price for [item]: €[price] [unit] at [store]"
/prices list
/prices listbash
sqlite3 /data/workspace/pantry.db "SELECT item, store, MIN(price) as price, unit FROM prices GROUP BY item ORDER BY item;"Display as a table grouped by item.
Notes
- Aldi/Lidl are typically 20–30% cheaper than Rewe
- Data is shared with shopping-agent for budget optimization
- See for typical price ranges
references/berlin-prices.md