Install
openclaw skills install weather-query-zrr查询全球城市实时天气信息,支持当前天气、未来预报和空气质量查询。基于 wttr.in 和 Open-Meteo API,无需 API Key。Use this skill when user asks about weather, temperature, forecast, or air quality for any city.
openclaw skills install weather-query-zrr查询全球城市天气信息的技能。支持三种查询模式:当前天气、未来3天预报、空气质量。默认使用 wttr.in(无需 API Key),也支持 Open-Meteo API 作为备选数据源。
requests 库(pip install requests)python3 scripts/weather.py --city "Beijing" --mode current
python3 scripts/weather.py --city "Shanghai" --mode forecast
python3 scripts/weather.py --city "Guangzhou" --mode air
python3 scripts/weather.py --city "Tokyo" --source open-meteo
| 参数 | 必需 | 默认值 | 说明 |
|---|---|---|---|
| --city | 是 | - | 城市名(支持中英文,如 "北京" / "Beijing") |
| --mode | 否 | current | 查询模式: current / forecast / air |
| --source | 否 | wttr | 数据源: wttr / open-meteo |
| --lang | 否 | zh | 输出语言: zh / en |
| --format | 否 | text | 输出格式: text / json |
🏙️ 北京 (Beijing)
🌡️ 温度: 28°C (体感 30°C)
💧 湿度: 65%
🌬️ 风速: 12 km/h 东南风
☁️ 天气: 多云
👁️ 能见度: 10 km
🏙️ 上海 未来3天预报:
📅 今天: 30°C / 22°C ☀️ 晴
📅 明天: 28°C / 21°C ⛅ 多云
📅 后天: 25°C / 19°C 🌧️ 小雨
🏙️ 广州 空气质量:
🟢 AQI: 52 (良)
PM2.5: 35 μg/m³
PM10: 58 μg/m³
O₃: 42 μg/m³
# 验证脚本可执行
python3 scripts/weather.py --city "Beijing" --mode current
# 验证 JSON 输出
python3 scripts/weather.py --city "Beijing" --format json
# 验证中文名查询
python3 scripts/weather.py --city "深圳" --mode forecast
--format json 方便程序解析--source open-meteo