This skill should be used when the user asks about weather conditions, temperature, forecasts, rain, wind, or climate for any location. Use it when questions include phrases like "what's the weather in", "will it rain", "temperature in", "forecast for", or any request for current or upcoming weather information for a city or place.
This skill provides current weather conditions and multi-day forecasts for any city or location worldwide. It uses the Open-Meteo API — free, no API key required. City names are resolved via the Open-Meteo Geocoding API, so plain city names like "London" or "New York" work directly.
The assets/ directory contains:
assets/tool.py — Click CLI with current and forecast commandsassets/pyproject.toml — project metadata and weather script entrypointassets/uv.lock — locked dependenciesuvx --from <path-to-assets> weather <command> [options]
Force reinstall when assets change:
uvx --from <path-to-assets> --reinstall weather <command>
The assets are located at assets/ relative to this SKILL.md file.
Use the skill's base directory to construct the full path.
--reinstallassets/ files have been modified--reinstall is always safe| Command | Description |
|---|---|
| weather current LOCATION | Show current temperature, conditions, humidity, and wind for a location |
| weather forecast LOCATION [--days N] | Show a daily forecast table (1–16 days, default 7) |
# Current conditions
uvx --from <assets> weather current "London"
uvx --from <assets> weather current "Tokyo"
# 7-day forecast (default)
uvx --from <assets> weather forecast "New York"
# 3-day forecast
uvx --from <assets> weather forecast "Paris" --days 3
Category:weather