An Israeli consumer discount skill that maps any store to its best card, club, or voucher deal โ covering HTZone, Poalim Wonder, and government price data across 72 stores and 14 categories.
Part of the OpenClaw skill ecosystem.
- "Which card should I use at Victory?" โ ranked list of best deals with exact โช amounts
- "Where's cheapest for milk?" โ supermarket ranking + gov price data reference
- "Any Wolt discounts?" โ live voucher prices from verified sources
Hebrew-first. Designed for WhatsApp and Telegram group agents.
| Source | Type | Coverage | Auth Required |
|---|---|---|---|
| HiTech Zone Card (ืืื) | POS discount at checkout | Food chains, pharma, restaurants, fashion, travel | Card required |
| HiTech Zone Club | Discounted vouchers | ~500 businesses across all categories | Login required |
| HiTech Zone PROยฒ | Cashback + shop discounts | HTZone site purchases, PROยฒ Shop | Login required |
| Poalim Wonder | Points โ vouchers | Food chains, delivery, fashion, sports, gifts | Free signup |
| Gov Price Transparency | Full price comparison | All major supermarket chains (XML, daily) | None |
| Category | Hebrew | Stores |
|---|---|---|
| supermarkets | ืจืฉืชืืช ืืืื | ืฉืืคืจืกื, ืจืื ืืื, ืืืงืืืจื, ืงืจืคืืจ, ืฉืืง ืืขืืจ, ืืื ืืช ืืืชื + more |
| restaurants | ืืกืขืืืช | ืืจืืื, ืงืคื ืื ืืืืจ, ืงืคื ืงืคื, BBB, ืืืืก + more |
| delivery | ืืฉืืืืื | ืืืื, ืชื ืืืก, ืกืืืืก |
| pharma | ืคืืจื | ืกืืคืจ-ืคืืจื, ื ืืืคืืจื, ืืืืคืืจื |
| fashion | ืืืคื ื | ืงืกืืจื, ืคืืงืก, ืืืืฃ, ืืจืืื ืื, SOHO + more |
| electronics | ืืืงืืจืื ืืงื | KSP, ืืื, ืืืืืืจื, ืืืกื ื ืืฉืื |
| entertainment | ืืืืืืื | ืืก ืคืืื ื, ืกืื ืื ืกืืื, ืคืืื ื, ืื ืกืื ืื |
| gifts | ืืชื ืืช | GiftZone, Love Gift Card, Dream Card |
| home_kitchen | ืืืช ืืืืื | ืืืงืื, ืืืืก, ืืื ืกื ืืจ, ืกืืื |
| household_products | ื ืืงืืื | ืกื ื |
| travel | ืชืืืจืืช | ืืืกืชื, ืืืงืื ื, ืืืื ืืช ืคืชืื |
| gym_sports | ืืืฉืจ | ืืืืืก ืคืืืืก, ืืงืืืื, ืืื ืกืคืืจื |
| fuel | ืืืง | ืคื, ืกืื ืื, ืืืง |
| kids_baby | ืืืืื | ืฉืืื, ืืืืก ืืจ ืืก, ืืืืืืื ื |
discounts.json
โโโ Structural layer โ which source covers which category, max % off
โ near-static, update manually (quarterly)
โ
โโโ Deal layer โ exact voucher prices (e.g. Victory โช300 โ โช259)
cached_at timestamp, 30-day TTL
refreshed on-demand when stale
Why two layers? Structural data (HTZone covers supermarkets at up to 20%) barely changes. Specific voucher prices drift monthly. Separating them means 80% of queries are answered from near-free static data; only live lookups cost extra.
The agent loads only the relevant category section, not the full KB:
- Read
quick_lookup.store_to_categoryโ identify category (~200 tokens) - Read only that category + source metadata (~800โ1,200 tokens)
Result: ~75% fewer tokens vs loading the full file.
When cached_at is null or older than 30 days:
- Answer immediately from structural data (
max_pct) - If exact price needed โ browser fetch โ update
deals[]+cached_atโ save - Next request served from cache
Copy to your OpenClaw skills directory:
cp -r clawsavings ~/.openclaw/workspace/skills/clawsavingsThe skill is loaded automatically when the agent receives a discount-related query.
A sample of the 24 verified Poalim Wonder deals in the KB:
| Store | Face Value | Price | Discount |
|---|---|---|---|
| ืฉืืง ืืขืืจ | โช300 | โช255 + 50pts | 15% |
| ืืืงืืืจื | โช300 | โช259 + 50pts | 13.7% |
| ืงืจืคืืจ | โช300 | โช259 + 50pts | 13.7% |
| ืจืื ืืื | โช700 | โช620 + 50pts | 11.4% |
| ืืืื | โช100 | โช80 + 25pts | 20% |
| ืงืกืืจื | โช150 | โช109 + 25pts | 27.3% |
| ืืจืืื ืื | โช100 | โช65 + 25pts | 35% |
| ืกืืื | โช100 | โช60 + 25pts | 40% |
| ืืื ืกืคืืจื | โช250 | โช199 + 25pts | 20.4% |
| SOHO | โช200 | โช149 + 50pts | 25.5% |
Check if HTZone or Poalim Wonder benefit structure changed. Update max_pct and last_reviewed.
python scripts/refresh_deals.py --source poalim_wonderOr manually edit discounts.json: update deals[] array and set cached_at to today.
- Gov XML price integration โ product-level price comparison via OpenIsraeliSupermarkets
- HTZone deal automation โ browser refresh with saved session
- Max / Isracard โ expand coverage to remaining major card programs
clawsavings/
โโโ SKILL.md # Agent instructions + decision logic
โโโ discounts.json # Knowledge base (structural + deal layers)
โโโ header.jpg # Cover image
โโโ README.md # This file
โโโ scripts/
โโโ refresh_deals.py # Deal refresh automation
MIT