Get current weather and forecasts for any city or location worldwide. Use when the user asks about weather, temperature, rain, wind, or forecasts for any place.
Fetch current weather and forecasts via Open-Meteo (Python script) or wttr.in (curl).
✅ USE this skill when:
❌ DON'T use this skill when:
python {skill_path}/weather.py "City Name" [options]
Options:
--forecast 3 — include N-day forecast (default: current only)--format json — output as JSON (default: human-readable text)--units imperial — use Fahrenheit/mph (default: metric)# Current weather for a city
curl -s "wttr.in/CityName?format=%l%20%t%20%h%20%w%20%c"
# Human-readable output (default)
curl -s "wttr.in/CityName"
# JSON output
curl -s "wttr.in/CityName?format=j1"
# 3-day forecast
curl -s "wttr.in/CityName?2"
python {skill_path}/weather.py "Tokyo" or curl -s wttr.in/Tokyopython {skill_path}/weather.py "New York" --forecast 5python {skill_path}/weather.py "Paris" --units imperialCategory:weather