Install
openclaw skills install @paudyyin/weatherGet current weather, air quality, and 3-day forecasts for China using Moji Weather, including temperature, humidity, wind, and lifestyle tips.
openclaw skills install @paudyyin/weather中国天气查询服务,使用墨迹天气作为主要数据源�?
# 实时天气 + 三天预报
curl -s "https://tianqi.moji.com/weather/省份/城市/区县"
# 上海浦东
curl -s "https://tianqi.moji.com/weather/上海/上海/浦东"
# 山东日照
curl -s "https://tianqi.moji.com/weather/山东/日照/东港"
# 广东佛山顺德
curl -s "https://tianqi.moji.com/weather/广东/佛山/顺德"
如果墨迹天气不可用,使用 MSN 天气�?```bash curl -s "https://www.msn.cn/zh-cn/weather/"
---
## 以下为原�?wttr.in 文档(已弃用�?
Two free services, no API keys needed.
## wttr.in (primary, deprecated)
Quick one-liner:
```bash
curl -s "wttr.in/London?format=3"
# Output: London: ⛅️ +8°C
Compact format:
curl -s "wttr.in/London?format=%l:+%c+%t+%h+%w"
# Output: London: ⛅️ +8°C 71% �?km/h
Full forecast:
curl -s "wttr.in/London?T"
Format codes: %c condition · %t temp · %h humidity · %w wind · %l location · %m moon
Tips:
wttr.in/New+Yorkwttr.in/JFK?m (metric) ?u (USCS)?1 · Current only: ?0curl -s "wttr.in/Berlin.png" -o /tmp/weather.pngFree, no key, good for programmatic use:
curl -s "https://api.open-meteo.com/v1/forecast?latitude=51.5&longitude=-0.12¤t_weather=true"
Find coordinates for a city, then query. Returns JSON with temp, windspeed, weathercode.