Install
openclaw skills install weather-proGet weather, air quality, sunrise/sunset, golden/blue hour times, and sunrise/sunset glow quality forecasts (朝霞晚霞预测). Perfect for photographers and outdoor planning.
openclaw skills install weather-pro天气查询 + 朝霞晚霞预测
查天气(含霞光预测)
~/.openclaw/workspace/skills/weather-pro/scripts/weather-full.sh 北京
参数说明
| 城市 | 英文名 |
|---|---|
| 北京 | Beijing |
| 上海 | Shanghai |
| 秦皇岛 | Qinhuangdao |
| 广州 | Guangzhou |
| 深圳 | Shenzhen |
| 杭州 | Hangzhou |
| 成都 | Chengdu |
| 苏州 | Suzhou |
| 南京 | Nanjing |
[城市]天气 [日期]
🌡️ 温度:最低 ~ 最高
🌬️ 风力:风向 风级
☁️ 天况:晴/多云/雨
💧 湿度:百分比
🌫️ 空气质量:PM2.5 数值
🌅 日出:HH:MM
🌇 日落:HH:MM
🌅 朝霞质量:分数 (等级)
🌇 晚霞质量:分数 (等级)
| 分数 | 等级 | 建议 |
|---|---|---|
| 80-100 | Excellent | 强烈推荐 🌟 |
| 60-79 | Good | 值得去 ✨ |
| 40-59 | Fair | 可能有色彩 |
| 0-39 | Poor | 不建议 |
source ~/.openclaw/.env && curl -s "https://api.weatherapi.com/v1/forecast.json?key=${WEATHERAPI_KEY}&q=Beijing&days=1&lang=zh&aqi=yes" | jq '{
location: .location.name,
temp: .current.temp_c,
condition: .current.condition.text,
humidity: .current.humidity,
pm25: .current.air_quality.pm2_5
}'
source ~/.openclaw/.env && curl -s "https://api.sunsethue.com/event?latitude=39.90&longitude=116.41&date=$(date +%Y-%m-%d)&type=sunset&key=${SUNSETHUE_KEY}" | jq '{
quality: (.data.quality * 100 | floor),
rating: .data.quality_text
}'
</details>