weather-intelligence-digest
// Generate daily Weather Intelligence Digest using NOAA/NWS data with customizable locations and alert monitoring.
$ git log --oneline --stat
stars:1,933
forks:367
updated:March 4, 2026
SKILL.mdreadonly
SKILL.md Frontmatter
nameweather-intelligence-digest
descriptionGenerate daily Weather Intelligence Digest using NOAA/NWS data with customizable locations and alert monitoring.
homepagehttps://api.weather.gov
metadata[object Object]
Weather Intelligence Digest
Generate a daily Weather Intelligence Digest using NOAA / NWS data.
Setup
- Dependencies:
python3,pip. - Optional but recommended:
python3 -m venv skills/weather-digest/.venv && source skills/weather-digest/.venv/bin/activate. pip install -r skills/weather-digest/requirements.txt.- Copy
skills/weather-digest/config.example.jsontoconfig.jsonand customize thelocationslist withname,lat,lonpairs.
Usage
/exec python3 skills/weather-digest/weather_digest.py --config skills/weather-digest/config.json --output /tmp/digest.md
Output is Markdown; convert to PDF/email as needed.
Configuration Notes
- Data source:
api.weather.gov(no API key required; feel free to customize the User-Agent string in the script). - Each location fetches forecast + alerts; add/remove fields as needed.
- Extend the template by editing
build_digestinweather_digest.py.