price-hunter
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChinesePrice Hunter
价格猎手
Find and track the best grocery prices in Berlin.
查找并追踪柏林最优惠的食品杂货价格。
Setup
安装配置
bash
bash skills/price-hunter/scripts/init-db.shbash
bash skills/price-hunter/scripts/init-db.shCommands
命令
/prices search <item>
/prices search <item>/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
- 网页搜索:
"[item] price supermarket Berlin Germany Rewe Lidl Aldi 2025" - 提取2-3家超市的价格,可参考查看典型价格区间。
references/berlin-prices.md - 保存结果:
bash
bash skills/price-hunter/scripts/save-price.sh '[item]' '[store]' [price] '[unit]' - 按价格从低到高排序展示:
Prices for pasta (500g): • Aldi: €0.89 • Lidl: €0.99 • Rewe: €1.29 Cheapest: Aldi
/prices best <item>
/prices best <item>/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]"
bash
sqlite3 /data/workspace/pantry.db "SELECT store, price, unit FROM prices WHERE item='[item]' ORDER BY price ASC LIMIT 1;"回复:"**[item]的最优价格:在[store]**售价€[price] [unit]"
/prices list
/prices list/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.
bash
sqlite3 /data/workspace/pantry.db "SELECT item, store, MIN(price) as price, unit FROM prices GROUP BY item ORDER 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
- Aldi/Lidl的价格通常比Rewe低20-30%
- 数据会共享给shopping-agent用于预算优化
- 可查看了解典型价格区间
references/berlin-prices.md