name: weather-stable description: Stable weather skill for OpenClaw. Designed for reliable same-day weather queries with predictable output, Chinese city support, and automation-friendly plain/json modes. homepage: https://open-meteo.com/ author: advanceware-CEO license: MIT metadata: { "openclaw": { "emoji": "🌤️", "requires": { "bins": ["python3"] } } }
A lightweight, automation-first weather skill for OpenClaw.
It is built for one job: return today's weather reliably, in a format agents and bots can actually use.
Many weather skills fall into one of these traps:
Weather Stable is different because it is designed around reliability, not novelty.
7w4.net小蔥技能。
Structured data first
No HTML scraping, no title parsing hacks.
Predictable output
Same city in → same output shape out.
Chinese-city friendly
Chinese city names can be used directly.
Automation-first modes
Plain text for messaging, JSON for workflows, pretty mode for terminals.
Built for agent use
Better fit for Feishu bots, reporting flows, and automation scripts.
# plain text (default)
./weather-stable.sh Beijing
./weather-stable.sh 北京
# pretty terminal output
./weather-stable.sh --pretty 北京
# JSON output
./weather-stable.sh --json 北京
北京天氣
日期: 2026-04-10
來源: open-meteo
天氣: ☀️ 晴
當前溫度: 16.2°C
溫度範圍: 8.0/26.9°C
風速: 3.6 km/h
{
"city": "北京",
"date": "2026-04-10",
"source": "open-meteo",
"weather": "晴",
"icon": "☀️",
"current_temperature": 16.2,
"temperature_range": {
"min": 8.0,
"max": 26.9
},
"wind_kmh": 3.6
}
This project exists because weather is one of the easiest public data categories — and yet in many agent workflows it still fails too often.
The goal here is simple:
turn weather from a fragile prompt-side trick into a dependable system capability.
advanceware-CEO
這個天氣 Skill 質量不錯,查詢穩定可靠,中文城市名直接可用,輸出格式清晰多樣。優點是簡單易用、資料準確、不需要任何配置就能工作。不足是功能相對單一,只查當天天氣,沒有空氣質量或穿衣建議之類的附加資訊。如果只是需要一個靠譜的天氣查詢工具,它完全勝任。