Help us improve
Share bugs, ideas, or general feedback.
From nz-skills
Queries live AU & NZ fuel prices from PetrolMate API. Search stations by location or coordinates, filter by fuel type/brand, sort by price or distance. No API key required.
npx claudepluginhub thecolab-ai/.skills --plugin nz-skillsHow this skill is triggered — by the user, by Claude, or both
Slash command
/nz-skills:petrolmate-nz-auThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Query live AU and NZ fuel prices from petrolmate.com.au's public API through a lightweight CLI. Covers Australian state fuel data (NSW/QLD/VIC/SA/TAS FuelCheck) and NZ crowd-sourced data (Gaspy). No authentication required.
Queries live Gaspy NZ crowd-sourced fuel price statistics via CLI with human-readable and JSON output. Use for national observed averages, top cheapest 91 stations, station/brand counts, or recent confirmation totals.
Finds the cheapest gas stations near a user's location using Kakao Map anchor resolution and Korea's official Opinet fuel-price API. Always asks for current location first.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Share bugs, ideas, or general feedback.
Query live AU and NZ fuel prices from petrolmate.com.au's public API through a lightweight CLI. Covers Australian state fuel data (NSW/QLD/VIC/SA/TAS FuelCheck) and NZ crowd-sourced data (Gaspy). No authentication required.
gaspy-nz summary for NZ, no AU equivalent via PetrolMate)fuelclock-nz)gaspy-nz stations or petrolspy-nz)search --location "st heliers" --fuel PULP95 for a location-based price comparison--radius 10 to widen the search, --radius 3 to tighten--brand Shell to filter to a specific brand--sort distance when you care about proximity over price--json for machine-readable output or piping to jqRun with:
python3 skills/petrolmate-nz-au/scripts/cli.py <command> [flags]
searchSearch for stations near a location.
# By named location (from built-in lookup or PetrolMate geocoding)
python3 skills/petrolmate-nz-au/scripts/cli.py search --location "st heliers"
# Filter by fuel type, sorted cheapest first
python3 skills/petrolmate-nz-au/scripts/cli.py search --location "st heliers" --fuel PULP95
# Wider radius, filter by brand
python3 skills/petrolmate-nz-au/scripts/cli.py search --location "auckland" --fuel DIESEL --radius 10 --brand Z
# Custom coordinates
python3 skills/petrolmate-nz-au/scripts/cli.py search --lat -33.86 --lon 151.20 --fuel PULP98 --json
# IP-based location
python3 skills/petrolmate-nz-au/scripts/cli.py search --geoip --fuel ULP --radius 3
# Australian address (PetrolMate geocodes it)
python3 skills/petrolmate-nz-au/scripts/cli.py search --location "Brisbane QLD" --fuel DIESEL
locationsList built-in location names:
python3 skills/petrolmate-nz-au/scripts/cli.py locations
fuel-typesList available fuel types:
python3 skills/petrolmate-nz-au/scripts/cli.py fuel-types
| Code | Description |
|---|---|
| ULP | Unleaded 91 |
| E10 | E10 (Ethanol 10%) |
| PULP95 | Premium 95 |
| PULP98 | Premium 98 |
| PREMIUM | Premium (95+98) |
| DIESEL | Diesel |
| PDIESEL | Premium Diesel |
| DIESEL_PREMIUM | Premium Diesel (alias for PDIESEL) |
| LPG | LPG/Autogas |
| E85 | E85 (Ethanol 85%) |
| B20 | Biodiesel B20 |
scripts/cli.pyreferences/api-notes.mdhours_old shows data freshness; NZ Gaspy data can be 1–2 days old--location first checks the built-in lookup table, then falls back to PetrolMate geocodingurllib + json)