Global Weather Service
/install global-weather-service
Global Weather Service
Use this skill for both one-time weather queries and cron-backed weather subscriptions.
Capability split
1. One-time weather query
Use this when the user wants weather now, today, tomorrow, or a multi-day forecast.
Command:
python scripts/weather_report.py "伦敦"
python scripts/weather_report.py "南京" --days 7
Return the script output directly when the user wants the standard formatted bulletin.
2. Weather subscription
Use this when the user wants automatic pushes such as:
- 每天早上8点推送南京天气
- 以后每天发我伦敦今天天气
- 帮我看看我有哪些天气订阅
- 删除我的天气订阅
Set timezone first when missing:
python scripts/manage_weather_subscription.py set-timezone --to "\x3Ctarget>" --timezone "Asia/Shanghai"
Create subscription:
python scripts/manage_weather_subscription.py add --to "\x3Ctarget>" --city "南京" --time "每天早上8点" --mode today
python scripts/manage_weather_subscription.py add --to "\x3Ctarget>" --city "伦敦" --time "每天早上8点" --mode tomorrow
python scripts/manage_weather_subscription.py add --to "\x3Ctarget>" --city "东京" --time "每天早上8点" --mode 7day
List subscriptions:
python scripts/manage_weather_subscription.py list --to "\x3Ctarget>"
Update subscription:
python scripts/manage_weather_subscription.py update --id "\x3Cjob-id>" --time "每天晚上8点"
python scripts/manage_weather_subscription.py update --id "\x3Cjob-id>" --city "伦敦"
python scripts/manage_weather_subscription.py update --id "\x3Cjob-id>" --mode 7day
Delete subscription:
python scripts/manage_weather_subscription.py remove --id "\x3Cjob-id>"
python scripts/manage_weather_subscription.py remove --name "天气订阅: 南京 今天天气"
python scripts/manage_weather_subscription.py remove --name "南京"
Output format for weather reports
Always use this structure unless the user explicitly asks for another format:
#英国伦敦近七日天气
📍 2026年04月28日天气
⛅ 多云 | 温度:22.1/9.8℃
📊 生活指数
🤧 感冒:较易发
🏃 运动:适宜
👔 穿衣:长袖衬衫 / 薄外套 / 早晚加一件针织衫
☀️ 紫外线:较强
❗ 其他建议:昼夜温差明显,白天舒适,早晚偏凉,建议做好基础防晒
Rules
- Weather data source must be Open-Meteo.
- Do not promise future pushes without creating a real cron job.
- If subscription time is missing, ask for a concrete time first.
- If subscription city is missing, ask which city to subscribe to.
- If timezone is missing for subscription creation, ask for an IANA timezone explicitly.
- Support natural subscription modes:
today,tomorrow,7day. - Allow deletion by subscription id or unique subscription name.
- When a subscription fires, fetch fresh weather at trigger time.
- For one-time lookups, do not go through subscription flow.
Notes
- One-time report script:
scripts/weather_report.py - Subscription manager script:
scripts/manage_weather_subscription.py - Subscription data:
data/subscriptions.json - User timezone data:
data/user_timezones.json - Open-Meteo requires no API key.
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install global-weather-service - After installation, invoke the skill by name or use
/global-weather-service - Provide required inputs per the skill's parameter spec and get structured output
What is Global Weather Service?
Complete weather system powered by Open-Meteo for global city weather lookup and scheduled weather subscriptions. Use when the user asks to check current or... It is an AI Agent Skill for Claude Code / OpenClaw, with 56 downloads so far.
How do I install Global Weather Service?
Run "/install global-weather-service" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Global Weather Service free?
Yes, Global Weather Service is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Global Weather Service support?
Global Weather Service is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Global Weather Service?
It is built and maintained by zykkk-power (@zykkk-power); the current version is v0.1.1.