Install
openclaw skills install @firenai3424/hko-weather從香港天文台獲取實時天氣、9日預報及天氣警告信號,提供繁體中文格式化報告,適用於Discord發布。
openclaw skills install @firenai3424/hko-weather從香港天文台 (HKO) 開放數據 API 獲取天氣預報及警告信號。
從香港天文台獲取實時天氣狀況、9 日預報及天氣警告信號。返回格式化的 Markdown,適合 Discord 發佈。
數據來源:香港天文台 (https://www.hko.gov.hk)
語言:繁體中文 (Traditional Chinese)
Features:
HKO Data Terms:
Required Disclaimer for Outputs:
All skill outputs must include or reference the HKO disclaimer:
香港天文台所提供的天氣預報及氣候預測僅供參考,天文台不就該等天氣預報及氣候預測的準確性或完整性作出任何明示或暗示的保證。在任何情況下,天文台亦不就因使用該等天氣預報及氣候預測而引致或有關的任何損失、損害或費用承擔任何法律責任。
The weather forecasts and climate predictions provided by the Hong Kong Observatory are for reference only. The Observatory does not warrant the accuracy or completeness of such weather forecasts and climate predictions.
No API key required. All endpoints are from HKO's open data platform.
https://data.weather.gov.hk/weatherAPI/opendata/weather.php?dataType=rhrread&lang=tc
Returns:
https://data.weather.gov.hk/weatherAPI/opendata/weather.php?dataType=fnd&lang=tc
Returns:
https://data.weather.gov.hk/weatherAPI/opendata/weather.php?dataType=warningInfo&lang=tc
Returns:
Warning Types:
TCWS - Tropical Cyclone Warning Signal (熱帶氣旋警告信號) 🌀RAINSTORM - Rainstorm Warning Signal (暴雨警告信號) 🌧️COLD - Cold Weather Advice (寒冷天氣提示) ❄️STRONGWIND - Strong Wind Signal (強風信號) 💨LIGHTNING - Lightning Warning (雷暴警告) ⚡FIRESHRISK - Fire Risk Warning (火災危險警告) 🔥FLOOD - Flood Warning (水淹警告) 🌊LANDSLIP - Landslip Warning (山泥傾瀉警告) 🏔️curl -s "https://data.weather.gov.hk/weatherAPI/opendata/weather.php?dataType=rhrread&lang=tc"
curl -s "https://data.weather.gov.hk/weatherAPI/opendata/weather.php?dataType=fnd&lang=tc"
curl -s "https://data.weather.gov.hk/weatherAPI/opendata/weather.php?dataType=warningInfo&lang=tc"
curl -s "https://data.weather.gov.hk/weatherAPI/opendata/weather.php?dataType=rhrread&lang=tc"
curl -s "https://data.weather.gov.hk/weatherAPI/opendata/weather.php?dataType=fnd&lang=tc"
curl -s "https://data.weather.gov.hk/weatherAPI/opendata/weather.php?dataType=warningInfo&lang=tc"
The skill returns markdown formatted for Discord (bullet points, no tables):
When warnings are active:
## ⚠️ 天氣警告及信號
- 🌀 **八號烈風或暴風信號 8 號**
- 發出時間:14:00 HKT
## 🌤️ 香港天氣
**現時天氣** (更新時間:HH:MM HKT)
- 🌡️ 溫度:XX°C (京士柏)
- 💧 濕度:XX%
- ☀️ 紫外線指數:X (程度)
...
When no warnings are active:
## ⚠️ 天氣警告及信號
目前沒有生效警告
## 🌤️ 香港天氣
...
See scripts/fetch-weather.sh for a ready-to-use fetcher with Traditional Chinese output.
{
"temperature": {
"data": [
{"place": "京士柏", "value": 27, "unit": "C"},
{"place": "香港天文台", "value": 27, "unit": "C"}
],
"recordTime": "2026-03-26T14:00:00+08:00"
},
"humidity": {
"data": [{"place": "香港天文台", "value": 67, "unit": "percent"}],
"recordTime": "2026-03-26T14:00:00+08:00"
},
"uvindex": {
"data": [{"place": "京士柏", "value": 6, "desc": "高"}]
}
}
{
"generalSituation": "較潮濕的偏東氣流會在未來一兩日影響廣東東部沿岸...",
"weatherForecast": [
{
"forecastDate": "20260327",
"week": "星期五",
"forecastWeather": "大致多雲。早上沿岸有薄霧,日間部分時間有陽光。",
"forecastMaxtemp": {"value": 28, "unit": "C"},
"forecastMintemp": {"value": 23, "unit": "C"},
"forecastWind": "東至東南風 2 至 3 級。"
}
],
"updateTime": "2026-03-26T11:30:00+08:00"
}
{
"Warning_Summary": [
{
"WarningType": {
"Code": "TCWS",
"Name": {
"en": "Tropical Cyclone Warning Signal",
"tc": "熱帶氣旋警告信號",
"sc": "热带气旋警告信号"
}
},
"Signal": {
"Code": "8",
"Value": "8",
"Name": {
"en": "Strong Winds from Southeast",
"tc": "烈風或暴風從東南方吹襲",
"sc": "烈风或暴风从东南方吹袭"
}
},
"IssueTime": "2026-03-26T14:00:00+08:00"
}
],
"Special_Warning": [],
"Reminder_Warning": []
}
No warnings active:
{}
To schedule regular weather updates with Traditional Chinese output:
# Example cron job (runs at 8 AM and 6 PM HKT daily)
0 0,10 * * * /app/skills/hko-weather/scripts/fetch-weather.sh --format markdown --lang tc
The --lang tc parameter ensures Traditional Chinese output.