Get current weather and forecasts via wttr.in or Open-Meteo. Use when: user asks about weather, temperature, or forecasts for any location. NOT for: historical weather data, severe weather alerts, or detailed meteorological analysis. No API key needed.
67
82%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Low
Low-risk findings worth noting
Get current weather conditions and forecasts.
Meta-skills can run this skill as skill_exec for a bounded JSON forecast
without spawning an LLM sub-agent. The entrypoint extracts DESTINATION: from
planner contracts, queries wttr.in, and returns compact current, forecast,
seasonal_hint, and errors fields. Network failures are reported in
errors while preserving a usable seasonal hint.
Always include a city, region, or airport code in weather queries.
# One-line summary
curl "https://wttr.in/London?format=3"
# Detailed current conditions
curl "https://wttr.in/London?0"
# Specific city
curl "https://wttr.in/New+York?format=3"# 3-day forecast
curl "https://wttr.in/London"
# Week forecast
curl "https://wttr.in/London?format=v2"
# Specific day (0=today, 1=tomorrow, 2=day after)
curl "https://wttr.in/London?1"# One-liner
curl "https://wttr.in/London?format=%l:+%c+%t+%w"
# JSON output
curl "https://wttr.in/London?format=j1"
# PNG image
curl "https://wttr.in/London.png"%c — Weather condition emoji%t — Temperature%f — "Feels like"%w — Wind%h — Humidity%p — Precipitation%l — Location"What's the weather?"
curl -s "https://wttr.in/London?format=%l:+%c+%t+(feels+like+%f),+%w+wind,+%h+humidity""Will it rain?"
curl -s "https://wttr.in/London?format=%l:+%c+%p""Weekend forecast"
curl "https://wttr.in/London?format=v2"curl https://wttr.in/ORD94ac35e
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.