Install
openclaw skills install @lfengwa2/weatherQuery current conditions and 1-10 day weather forecasts for cities, counties, districts, or coordinates in China, including temperature, apparent temperature, humidity, precipitation, wind, UV, sunrise, and sunset. Use when users ask in Chinese or English about today's weather, tomorrow's weather, rain, temperature, travel conditions, or multi-day forecasts for locations in mainland China, Hong Kong, Macao, or Taiwan. No API key is required.
openclaw skills install @lfengwa2/weatherUse the bundled script to resolve Chinese place names and retrieve current conditions plus forecasts from Open-Meteo. Do not invent or interpolate missing weather data.
Run one of these commands from the skill directory:
python3 scripts/china_weather.py "杭州"
python3 scripts/china_weather.py "深圳南山区" --days 3
python3 scripts/china_weather.py "北京" --days 1 --format json
If python3 is unavailable, use python.
For coordinates supplied by the user, bypass place-name resolution:
python3 scripts/china_weather.py --latitude 31.2304 --longitude 121.4737 --days 5
The script sends HTTPS GET requests only to:
geocoding-api.open-meteo.com for place-name resolutionapi.open-meteo.com for current and forecast dataIt uses the Python standard library, writes no files, executes no downloaded code, and reads no environment variables.