From pm-live
Check live air quality anywhere with zero API keys — Open-Meteo's air-quality API via curl, decoded from raw PM2.5 and AQI numbers into what they mean for going outside. Use when asked what's the air quality, is it safe to run outside, AQI in my city, or pollution levels right now. Produces the current AQI and pollutant levels, the plain-language health read with the standard bands, and the rerunnable command.
How this skill is triggered — by the user, by Claude, or both
Slash command
/pm-live:air-qualityThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Air quality is a daily decision input — run outside or inside, windows open or closed, mask or not — and Open-Meteo serves it globally over plain HTTPS, no key, no signup. This skill fetches it, then does the part the raw number doesn't: translating PM2.5 and AQI into the standard health bands, matched to what the user was actually deciding.
Air quality is a daily decision input — run outside or inside, windows open or closed, mask or not — and Open-Meteo serves it globally over plain HTTPS, no key, no signup. This skill fetches it, then does the part the raw number doesn't: translating PM2.5 and AQI into the standard health bands, matched to what the user was actually deciding.
Ask for these if not provided:
https://geocoding-api.open-meteo.com/v1/search?name=Delhi&count=1)curl -s "https://air-quality-api.open-meteo.com/v1/air-quality?latitude=28.61&longitude=77.21¤t=pm2_5,pm10,ozone,nitrogen_dioxide,us_aqi,european_aqi" — add &hourly=pm2_5,us_aqi&forecast_days=2 when the question is "when today will it be best."[One sentence: the band, and the answer to their actual decision.]
| Metric | Now | Band |
|---|---|---|
| [US or EU AQI per preference · PM2.5 · the pollutant relevant to their question] |
[If timing asked: the hourly shape and the recommended window]
Source: Open-Meteo air-quality API (modeled/CAMS) · rerun: [exact curl]
Advisory reading — for medical-grade decisions use official local monitoring.
npx claudepluginhub mohitagw15856/pm-claude-skills --plugin pm-liveGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Enforces test-driven development: write failing test first, then minimal code to pass. Use when implementing features or bugfixes.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.