skills/integrations/weather/SKILL.md
Get current weather and forecasts with no API key using wttr.in and Open-Meteo.
npx skillsauth add helix4u/hermes-agent weatherInstall 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.
Two free weather services, no API keys required.
Quick one-liner:
curl -s "wttr.in/London?format=3"
Compact format:
curl -s "wttr.in/London?format=%l:+%c+%t+%h+%w"
Full forecast:
curl -s "wttr.in/London?T"
Format codes:
%c condition%t temperature%h humidity%w wind%l location%m moonTips:
wttr.in/New+Yorkwttr.in/JFK?m metric, ?u USCS?1, current only: ?0curl -s "wttr.in/Berlin.png" -o weather.pngProgrammatic JSON endpoint:
curl -s "https://api.open-meteo.com/v1/forecast?latitude=51.5&longitude=-0.12¤t_weather=true"
Use this when you need structured fields like temperature, windspeed, and weathercode. Docs: https://open-meteo.com/en/docs
development
Use when you have a spec or requirements for a multi-step task. Creates comprehensive implementation plans with bite-sized tasks, exact file paths, and complete code examples.
development
Use when implementing any feature or bugfix, before writing implementation code. Enforces RED-GREEN-REFACTOR cycle with test-first approach.
development
Use when encountering any bug, test failure, or unexpected behavior. 4-phase root cause investigation — NO fixes without understanding the problem first.
development
Use when executing implementation plans with independent tasks. Dispatches fresh delegate_task per task with two-stage review (spec compliance then code quality).