Fetch Iberian day-ahead electricity prices for Portugal and Spain from OMIE via the OMIEData library, plan cheapest appliance or EV charging windows, compare...
编程
pitstop
试用Italian fuel-station prices (petrol, diesel, GPL, methane, HVO) and EV charging stations. Find cheapest by municipality / province / brand / coordinate, look up EV chargers near a place, get macro price stats. Backed by MIMIT Osservaprezzi Carburanti, OpenStreetMap (Overpass), and ISTAT comune coordinates. Use for "cheapest diesel near X in Italy", "fuel stations in <comune>", or "EV chargers near <comune>".
它能做什么
Italian fuel-station prices (petrol, diesel, GPL, methane, HVO) and EV charging stations. Find cheapest by municipality / province / brand / coordinate, look up EV chargers near a place, get macro price stats. Backed by MIMIT Osservaprezzi Carburanti, OpenStreetMap (Overpass), and ISTAT comune coordinates. Use for "cheapest diesel near X in Italy", "fuel stations in <comune>", or "EV chargers near <comune>".
技能文档
pitstop
pitstop answers Italian fuel-price questions from official MIMIT open data. It downloads and caches the national station registry + daily price file and joins them locally, so you get a small JSON answer instead of multi-megabyte CSVs.
When to use
- "Cheapest diesel / petrol near in Italy"
- "Fuel stations in " and their prices
- Comparing self-service vs served prices, or brands, for Italian stations
- Finding EV chargers near a coordinate or municipality (OSM)
Do not use the fuel commands for: live/intraday prices (this is daily data) or countries other than Italy. For EV charging, use pitstop chargers / MCP find_chargers — separate domain backed by OpenStreetMap. Per-station €/kWh tariffs are never returned by pitstop chargers / MCP find_chargers (it parses OSM's fee yes/no flag and no price field); each charger result includes a tariff_info_url linking to the operator's official tariff page — surface that to the user instead of guessing a price.
Commands
Always pass --json when consuming the output programmatically, or --geojson if you have mapping/GIS capabilities.
# Multi-fuel query in a municipality (supports EN/FR/DE city names)
pitstop stations --comune Milan --fuel "Benzina,Gasolio" --cheapest --limit 5 --json
# Nearest stations to a coordinate, with navigation URLs
pitstop stations --near 46.498,11.354 --radius 5 --fuel Benzina --json
# Export to GeoJSON FeatureCollection
pitstop stations --comune ROME --fuel Gasolio --geojson
# Find EV chargers with error reporting
pitstop chargers --comune Venice --json
Key flags:
--comune: Municipality name. Supports international names (Rome, Milan, Venice, Florence, Bozen, Mailand, Venise, etc.).--fuel: Substring search. Supports comma-separated lists (e.g.Benzina,Gasolio).--geojson: Emits a standard GeoJSON FeatureCollection with properties and geometry.- Other flags:
--provincia,--brand,--near,--radius,--self/--served,--cheapest,--min-price,--fresh-within-days,--limit,--json.
JSON / GeoJSON contract
stations --jsonreturns a stable envelope withstations[],query, and aqualityblock (how many returned prices were screened against a local median). Each station includes anavigation_url(Google Maps).stations --geojsonreturns aFeatureCollection. Geometry isPoint[lon, lat]. Properties include all station metadata.chargersoutput includes anerrorfield in the envelope when the external Overpass API fails.
Advice for Agents
- Use International Names: You can pass "Rome" or "Milan" directly to
--comune; the tool handles the translation to the Italian dataset keys. - Batch Fuel Queries: To compare Petrol and Diesel, use
--fuel "Benzina,Gasolio"in a single call. - Surface Maps: Always include the
navigation_urlin your response so the user can navigate to the station immediately. - Handle Outliers: Every price carries a
median_basis. Ascreenedprice also carriesregional_mediananddeviation_pct, plusoutlier: truewhen it is >15% below the local median or below the Tukey lower fence Q1−1.5·IQR. Theoutlierkey is present only when it is true, so read it as optional (price.get("outlier"), notprice["outlier"]). Use the flag to warn users about potential data errors in the open feed. - Don't over-trust
unscreenedprices: anunscreenedprice sits in a (fuel, provincia) bucket with too few samples to compute a median, so no outlier check ran on it — it is returned exactly as reported. The envelope'squalityblock countsscreenedvsunscreenedfor the answer you actually got — don't assume a fixed share — so check it before calling a suspiciously cheap price a bargain. - Check suspect coordinates: A
coordinate_suspect: trueflag appears when a station's coord is far from its declared comune's centroid. Treat these with low confidence.
Machine-readable versions of these command patterns, each with the caveats that must travel with the answer, are in evals/agent/recipes.json in the repo.
相关技能
Get mobility route options worldwide — fare estimates, ETA, and a one-tap deeplink to open the ride. Queries the KLO Mobility A2A agent.
Get instant quotes and book private chauffeur rides in Paris and across Europe with MyDriverParis — airport & train station transfers, hourly hire, day trips...
Search Google Maps for locations
Find the cheapest hotel deal by comparing live prices across Booking.com, Agoda, Google Hotels, and OpenTravel for any city worldwide and any travel dates — one command returns ranked best-value, cheapest, and quality picks with direct booking links, all normalized to USD. Use whenever someone asks for hotel prices, hotel deals, the cheapest room or rate, best hotel rates, a hotel price comparison, or which OTA is cheaper — e.g. 'is Booking or Agoda cheaper for Tokyo', 'find me a hotel in Bangkok under $100', 'compare hotel prices for 12–15 Aug', 'cheapest hotel near Shinjuku'.
Use when the user needs a China domestic rental-car reference price, especially for same-day or holiday travel where train-station or airport store choice ma...