skills/rental-prices/SKILL.md
Check median rental prices for Sydney suburbs. Use this skill when the user asks about rent prices, how much rent is, rental costs, median rent, weekly rent, affordable suburbs, cheap rent, 2-bedroom rent, unit prices, house rental costs, or any Sydney rental market question. Works with zero configuration — no API keys needed.
npx skillsauth add agairola/fuel-pricing-skill rental-pricesInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Check median rental prices for Sydney suburbs. Zero config — no API keys, no setup. Data is embedded directly in the script (NSW DCJ Rent and Sales Report, Q4 2025).
npx skills add agairola/life-skills --skill rental-prices
Trigger this skill when the user:
brew install uv (macOS) or pip install uv (all platforms)uv run.!command -v uv > /dev/null 2>&1 && echo "uv: installed" || echo "uv: NOT INSTALLED"
Location resolution is only needed when the user wants nearby suburbs. For --suburb, --postcode, --budget (without location), or default mode, no location is needed.
For nearby mode, follow the standard location resolution steps in ../../references/location-flow.md before running the script.
uv run "${CLAUDE_SKILL_DIR}/scripts/rental_prices.py" [OPTIONS]
| Flag | Values | Default | Purpose |
|------|--------|---------|---------|
| --suburb | suburb name (string) | — | Search for a specific suburb by name (fuzzy match) |
| --postcode | postcode (string) | — | Search by postcode |
| --bedrooms | 1, 2, 3, 4 | all | Filter by bedroom count |
| --type | house, unit, all | all | Property type filter |
| --budget | max weekly rent (int) | — | Find suburbs within budget |
| --location | suburb/city name | — | Find nearby suburbs by place name |
| --lat | latitude (float) | — | Latitude for nearby search |
| --lng | longitude (float) | — | Longitude for nearby search |
| --radius | km (float) | 5 | Search radius for nearby mode |
| --no-cache | (flag) | off | Force fresh data |
Only parse stdout (JSON). Stderr contains diagnostics only.
# Search for a specific suburb
uv run "${CLAUDE_SKILL_DIR}/scripts/rental_prices.py" --suburb "Newtown"
# Search by postcode
uv run "${CLAUDE_SKILL_DIR}/scripts/rental_prices.py" --postcode 2042
# Filter by bedrooms and property type
uv run "${CLAUDE_SKILL_DIR}/scripts/rental_prices.py" --suburb "Bondi" --bedrooms 2 --type unit
# Find suburbs within a budget
uv run "${CLAUDE_SKILL_DIR}/scripts/rental_prices.py" --budget 500 --type unit --bedrooms 2
# Find suburbs within budget near a location
uv run "${CLAUDE_SKILL_DIR}/scripts/rental_prices.py" --budget 600 --type unit --bedrooms 2 --location "Redfern"
# Nearby suburbs with rents
uv run "${CLAUDE_SKILL_DIR}/scripts/rental_prices.py" --location "Coogee, NSW" --radius 3
# Nearby by coordinates
uv run "${CLAUDE_SKILL_DIR}/scripts/rental_prices.py" --lat -33.89 --lng 151.27 --radius 5
# Default: top 10 most affordable 2br units
uv run "${CLAUDE_SKILL_DIR}/scripts/rental_prices.py"
Follow the formatting rules in ../../references/platform-formatting.md. Key skill-specific formatting below.
Newtown (2042) — Median Weekly Rents
Units:
1 bed: $480/wk
2 bed: $650/wk
3 bed: $830/wk
Houses:
2 bed: $800/wk
3 bed: $1,050/wk
4 bed: $1,350/wk
Source: NSW DCJ Rent and Sales Report, Q4 2025
Suburbs with 2-bedroom units under $500/wk:
1. Mount Druitt (2770) — $430/wk
2. Campbelltown (2560) — $440/wk
3. Fairfield (2165) — $440/wk
4. Cabramatta (2166) — $440/wk
5. Penrith (2750) — $470/wk
15 suburbs found under $500/wk
Source: NSW DCJ Rent and Sales Report, Q4 2025
Suburbs near Bondi (within 5 km):
1. Bondi (2026) — 0.0 km
Unit: $600–$1,100/wk · House: $1,000–$1,800/wk
2. Bondi Beach (2026) — 0.1 km
Unit: $620–$1,150/wk · House: $1,050–$1,900/wk
3. Bronte (2024) — 1.4 km
Unit: $580–$1,050/wk · House: $1,000–$1,750/wk
8 suburbs found within 5 km
Source: NSW DCJ Rent and Sales Report, Q4 2025
confidence: "low"): Do not silently show results. Tell the user: "I got an approximate location of [city] but it may not be exact. What suburb or postcode are you near?" Rerun with their answer.All data is based on the NSW Department of Communities and Justice (DCJ) Rent and Sales Report. Data is embedded directly in the script — no API calls needed for rental data. Location features (--location, --lat/--lng) use Nominatim for geocoding and ip-api.com as a fallback. No API keys required. No user data is sent to any service beyond coordinates for geocoding.
content-media
Extract transcripts from YouTube videos. Use when the user asks for a transcript, subtitles, or captions of a YouTube video and provides a YouTube URL (youtube.com/watch?v=, youtu.be/, or similar). Supports output with or without timestamps.
development
Check the current UV index and sun safety advice for Australian cities. Use this skill when the user asks about UV index, sunscreen, sun protection, sunburn risk, whether it's safe to be outside in the sun, SPF recommendation, or sun safety for any Australian city. Works with zero configuration — no API keys needed.
development
Check live traffic incidents, roadworks, and hazards in Sydney. Use this skill when the user asks about traffic jams, road closures, accidents, roadworks, traffic conditions, how the traffic is, M5 traffic, highway conditions, or any Sydney traffic question. Works without API keys (provides Live Traffic NSW/Google Maps links) but best with a free TfNSW API key for real-time incident data.
development
Check Sydney toll road prices and calculate route toll costs. Use this skill when the user asks about toll prices, toll costs, how much the toll is, M2 toll, harbour bridge toll, tunnel toll, cheapest route, toll calculator, E-Tag, Linkt, or any Sydney toll road question. Works with zero configuration — no API keys needed.