Install
openclaw skills install openmeteo-sh-weather-advancedAdvanced weather from free OpenMeteo API: historical data, detailed variable selection, model choice, past-days, and in-depth forecasts. Use when the user asks about historical weather, specific weather models, niche variables (pressure, dew point, snow depth, etc.), or needs fine-grained control beyond simple current/forecast queries.
openclaw skills install openmeteo-sh-weather-advancedAdvanced weather queries via openmeteo CLI: historical data (from 1940), detailed variable selection, model choice, and fine-grained forecast control. No API key required.
CLI: openmeteo <command> [options]
Always use --llm — compact TSV output designed for LLMs. Weather codes are auto-resolved to text. Pass --raw only if the user explicitly asks for JSON.
# Current weather
openmeteo weather --current --city=Berlin --llm
# Current + 2-day forecast
openmeteo weather --current --forecast-days=2 --city=London --llm
# Only precipitation data
openmeteo weather --forecast-days=2 --city=Vienna \
--hourly-params=precipitation,precipitation_probability,weather_code --llm
# Coordinates instead of city
openmeteo weather --current --lat=48.8566 --lon=2.3522 --llm
# Disambiguate city with country
openmeteo weather --current --city=Portland --country=US --llm
# Forecast starting from day 3 (skip today and tomorrow)
openmeteo weather --forecast-days=7 --forecast-since=3 --city=London --llm
# Historical weather
openmeteo history --city=Paris --start-date=2024-01-01 --end-date=2024-01-31 --llm
--city=NAME — city name, auto-geocoded; usually sufficient on its own--country=CODE — optional country hint to disambiguate (e.g. US, GB). Only needed when city name is ambiguous. Pass whatever you have or omit.--lat=NUM --lon=NUM — direct WGS84 coordinates, skips geocodingMode (at least one required):
--current — fetch current conditions--forecast-days=N — days of forecast, 0–16 (default 7)--forecast-since=N — start from day N of the forecast (1=today, 2=tomorrow, etc.). Trims the window server-side. Must be <= forecast-days.Param overrides (comma-separated variable names):
--current-params=LIST — override current variables--hourly-params=LIST — override hourly variables--daily-params=LIST — override daily variablesUnits:
--temperature-unit=UNIT — celsius (default) / fahrenheit--wind-speed-unit=UNIT — kmh (default) / ms / mph / kn--precipitation-unit=UNIT — mm (default) / inchOther:
--past-days=N — include past days, 0–92 (default 0)--timezone=TZ — IANA timezone or auto (default auto)--model=MODEL — weather model (default best_match)Requires --start-date=YYYY-MM-DD and --end-date=YYYY-MM-DD.
Supports --hourly-params, --daily-params, --model (era5, era5_land, cerra, ecmwf_ifs, etc.).
Override defaults via --current-params, --hourly-params, --daily-params. For the full variable list with descriptions, run openmeteo weather help --daily-params (or --hourly-params, --current-params).
temperature_2m — air temp at 2m, Capparent_temperature — feels-like temp, Crelative_humidity_2m — humidity, %precipitation — total precipitation (rain+showers+snow), mmprecipitation_probability (hourly only) — chance of precipitation, %weather_code — condition code, auto-resolved to text (e.g. "Light rain")wind_speed_10m — wind at 10m, km/hwind_gusts_10m — gusts at 10m, km/hcloud_cover — total cloud cover, %is_day (current only) — daytime flag, 0/1uv_index (hourly only) — UV indexsnowfall — snowfall, cmvisibility — visibility, mpressure_msl — sea-level pressure, hPatemperature_2m_max / temperature_2m_min — daily max/min temp, Cprecipitation_sum — total daily precipitation, mmprecipitation_probability_max — max precipitation chance, %weather_code — dominant condition for the daywind_speed_10m_max — max wind, km/hsunrise / sunset — ISO 8601 timesuv_index_max — max UV indexsnowfall_sum — total daily snowfall, cmapparent_temperature_max / apparent_temperature_min — daily feels-like range, CRun openmeteo weather help <flag> to get a full list of available variables with descriptions:
openmeteo weather help --daily-params
openmeteo weather help --hourly-params
openmeteo weather help --current-params
openmeteo history help --daily-params
Add --llm for compact TSV output: openmeteo weather help --daily-params --llm
Use this when you need a variable beyond the common ones listed above.
--llm output format — most token-efficient, designed for agents.--city="New York", --city="St. Petersburg". Only known-safe tokens (numbers, single ASCII words) may be unquoted.--forecast-days=1 or --forecast-days=2 for today/tomorrow — don't waste tokens on 7-day fetches.--hourly-params or --daily-params to fetch only what's needed, analyze the output and give answer.--forecast-since=N when the user asks about a specific future day (e.g. "weather on Friday") to avoid fetching unnecessary earlier days.User: "What's the weather like?"
--current.openmeteo weather --current --city=Berlin --llm
User: "When will the rain stop?"
openmeteo weather --forecast-days=2 --city=Berlin \
--hourly-params=precipitation,precipitation_probability,weather_code --llm
User: "Do I need an umbrella?"
openmeteo weather --forecast-days=1 --city=Berlin \
--hourly-params=precipitation,precipitation_probability,weather_code --llm
User: "What's the weather this weekend in Rome?"
--forecast-since to skip to Saturday, --forecast-days to cover through Sunday.openmeteo weather --forecast-days=7 --forecast-since=5 --city=Rome \
--daily-params=temperature_2m_max,temperature_2m_min,weather_code,precipitation_sum --llm
User: "What's the temperature outside?"
openmeteo weather --current --city=Berlin \
--current-params=temperature_2m,apparent_temperature --llm
User: "How much rain fell in Tokyo last June?"
openmeteo history --city=Tokyo --start-date=2025-06-01 --end-date=2025-06-30 \
--daily-params=precipitation_sum,rain_sum --llm