Access and compare Israeli supermarket prices using mandatory Price Transparency Law data feeds. Use when user asks about "supermarket prices Israel", "price comparison Shufersal", "Rami Levy prices", "grocery prices", "Price Transparency Law", "shopping list optimizer", "food costs Israel", or "השוואת מחירי סופר". Covers chain-specific XML feed parsing, cross-chain price comparison, shopping list optimization, price trend tracking, and restaurant ingredient cost analysis. Do NOT use for restaurant operations (use israeli-restaurant-ops) or non-food retail prices.
LiorVainer125 스타2026. 4. 14.
직업
카테고리
이커머스 개발
스킬 내용
Instructions
Step 1: Access Supermarket XML Feeds
Under the 2015 Price Transparency Law (חוק שקיפות מחירים), Israeli supermarket chains with 3+ stores must publish product prices as XML files.
Data published at: prices.shufersal.co.il, and similar portals per chain
Available data files:
PricesFull — complete product catalog with prices
PricesPromotions — current sales and promotions
Stores — store locations and details
Files updated daily (typically overnight)
See references/chain-feeds.md for per-chain URLs and access methods
Step 2: Parse Chain-Specific Data Formats
Each chain publishes in a slightly different XML schema. Supported chains and their format:
Chain
Hebrew Name
Feed URL Pattern
Notes
관련 스킬
Shufersal
שופרסל
prices.shufersal.co.il
Largest chain, most structured data
Rami Levy
רמי לוי
prices.rframi.co.il
Known for low prices
Yochananof
יוחננוף
See references/chain-feeds.md
Central Israel focus
Victory
ויקטורי
prices.victory.co.il
Publicly traded, separate from Carrefour Israel
Carrefour Israel (formerly Mega/Yeinot Bitan)
קרפור ישראל
prices.mega.co.il
Rebranded from Mega/Yeinot Bitan in 2022-2023
Osher Ad
אושר עד
prices.osherad.co.il
Discount chain
Tiv Taam
טיב טעם
prices.tivtaam.co.il
Non-kosher items available
Use scripts/parse_price_xml.py to parse feeds into normalized JSON format.
Key fields: item_code, item_name, manufacturer, price, unit_price, quantity, unit_of_measure, update_date
Step 3: Cross-Chain Price Comparison
Match products across chains by:
Barcode (most reliable — Israeli standard barcode)
Item name + manufacturer (fuzzy matching for naming differences)
Item code (chain-specific, less reliable for cross-chain)
Generate comparison table for specific products:
Calculate: cheapest chain, average price, price spread (max-min)
Handle store-specific pricing (same chain may have different prices by location)
For restaurant owners: calculate ingredient costs from supermarket data.
Input: recipe with ingredients and quantities
Output: cost per serving based on cheapest available prices
Track ingredient cost trends over time
Alert when key ingredient prices spike
Generate monthly cost report for menu pricing decisions
Examples
Example 1: Compare Milk Prices Across Chains
User says: "What's the cheapest place to buy Tnuva 3% milk 1 liter?"
Actions:
Query PricesFull feeds from all chains for item (barcode matching)
Compile prices per chain and store location
Apply any active promotions from PricesPromotions
Generate comparison table sorted by price
Result: Cheapest: Rami Levy at 5.90 NIS, Osher Ad at 6.10 NIS, Shufersal at 6.50 NIS (but 2-for-10 promo active). With Shufersal promo, buying 2 = 5.00 NIS each. Recommendation: Shufersal if buying 2+, Rami Levy for single.
Example 2: Optimize Weekly Shopping List
User says: "Here's my shopping list for the week, find me the cheapest option near Ramat Gan"
Actions:
Set up weekly price monitoring for these ingredients
Generate baseline cost report
Result: Current cost per serving: 8.40 NIS (cheapest chain combination). Eggs are 32% of cost. Price alert configured — you'll be notified if any ingredient price changes >10%.
Bundled Resources
References
references/chain-feeds.md — URLs and access methods for each Israeli supermarket chain's price transparency feeds. Includes XML schema documentation, update schedules, and known format variations. Consult when accessing chain data in Steps 1-2.
Scripts
scripts/parse_price_xml.py — Parses Israeli supermarket XML price feeds into normalized JSON. Supports Shufersal, Rami Levy, and other chain formats. Handles gzipped XML files and character encoding. Run: python scripts/parse_price_xml.py --help
Gotchas
Israeli supermarket chain URLs and XML feed schemas change without notice. Agents relying on cached or training-data URLs will hit broken endpoints. Always verify feed URLs from references/chain-feeds.md before querying.
Prices in Israel include VAT (18%) by default, unlike US prices which are pre-tax. Agents may perform cost comparisons that double-count or ignore VAT depending on their training data assumptions.
Israeli product barcodes use the 729 country prefix, but some imported products retain their original country barcode. Agents may fail cross-chain matching when the same product has different barcode formats across chains.
"Mega" and "Yeinot Bitan" rebranded to Carrefour Israel in 2022-2023. "Victory" is a separate publicly traded company. Agents may still refer to the outdated "Victory / Mega" grouping or assume they share pricing policies.
Promotions in Israeli supermarkets often have conditions agents miss: "buy 2 get discount" (2 b-X shekel), club-member-only pricing, or regional promotions that apply only to specific store locations.
Troubleshooting
Error: "XML feed download failed"
Cause: Chain's price transparency server is temporarily down or URL has changed.
Solution: Check if the chain updated their feed URL (this happens occasionally). Try accessing the feed manually in a browser. Feeds are typically most reliable in the morning hours (updated overnight). See references/chain-feeds.md for current URLs.
Error: "Product not found in cross-chain comparison"
Cause: Product naming or barcode differs across chains.
Solution: Try matching by barcode first (most reliable). If barcode match fails, use fuzzy name matching with manufacturer. Some chains use different product names for the same item (e.g., "חלב תנובה 3%" vs "חלב 3% תנובה").
Error: "Price data outdated"
Cause: Using cached data from a previous day or the chain hasn't updated yet.
Solution: Check the UpdateDate field in the XML feed. Most chains update overnight. If data is >24 hours old, force a fresh download. Promotions feed updates may lag behind PricesFull updates.
Error: "Shopping list optimization slow"
Cause: Comparing all items across all chains and all stores is computationally expensive.
Solution: Limit comparison to chains with stores within a configurable radius (default: 5 km). Pre-filter by chains the user actually shops at. Use cached price data instead of fetching fresh for every optimization.