air-quality-advisor-skill
Installation
SKILL.md
air-quality-advisor-skill
A real-time Singapore air-quality advisor. Fetches current PSI, PM2.5, and UV index from NEA's public endpoints, classifies each into a 5-band health scale, and emits a single health_advisory string driven by the worst of the three. Includes a 4-day forecast pulled from NEA's 4-day weather forecast endpoint.
Quick Start
# By address
python3 skills/air-quality-advisor-skill/scripts/air_quality.py --location "Bishan Park"
# By lat,lon
python3 skills/air-quality-advisor-skill/scripts/air_quality.py --location 1.3508,103.8494
# By 6-digit Singapore postcode
python3 skills/air-quality-advisor-skill/scripts/air_quality.py --postcode 570123
Stdlib only — no pip install. No auth required for NEA endpoints (anonymous access works).