← 返回 Skills 市场
firenai3424

HKO Weather

作者 firenai3424 · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
113
总下载
0
收藏
1
当前安装
1
版本数
在 OpenClaw 中安装
/install hko-weather
功能描述
從香港天文台獲取實時天氣、9日預報及天氣警告信號,提供繁體中文格式化報告,適用於Discord發布。
使用说明 (SKILL.md)

HKO Weather Skill (Traditional Chinese / Cantonese)

從香港天文台 (HKO) 開放數據 API 獲取天氣預報及警告信號。

Description

從香港天文台獲取實時天氣狀況、9 日預報及天氣警告信號。返回格式化的 Markdown,適合 Discord 發佈。

數據來源:香港天文台 (https://www.hko.gov.hk)

語言:繁體中文 (Traditional Chinese)

Features:

  • 實時天氣(溫度、濕度、紫外線指數)
  • 9 日天氣預報
  • 天氣警告及信號(颱風、暴雨、寒冷等)

License Compliance Notes

HKO Data Terms:

  • Data is provided by the Hong Kong Observatory under non-commercial terms
  • Attribution required: "資料來源:香港天文台 (https://www.hko.gov.hk)"
  • All outputs must include the HKO disclaimer (see below)
  • Non-commercial use only - no sale or commercial exploitation without written permission

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.

Trigger Keywords

  • "HK weather"
  • "Hong Kong weather"
  • "HKO weather"
  • "weather report HK"
  • "Hong Kong forecast"
  • "HK temperature"
  • "Hong Kong Observatory weather"
  • "香港天氣"
  • "天氣報告"
  • "香港預報"

API Endpoints

No API key required. All endpoints are from HKO's open data platform.

Current Weather (Traditional Chinese)

https://data.weather.gov.hk/weatherAPI/opendata/weather.php?dataType=rhrread&lang=tc

Returns:

  • Temperature readings from multiple stations (溫度)
  • Humidity (濕度)
  • UV index (紫外線指數)
  • Rainfall data (雨量)
  • Weather icon (天氣圖標)

9-Day Forecast (Traditional Chinese)

https://data.weather.gov.hk/weatherAPI/opendata/weather.php?dataType=fnd&lang=tc

Returns:

  • Daily forecasts (min/max temp, humidity, wind, weather description)
  • General weather situation summary (天氣概況)
  • Sea and soil temperatures (海溫/土溫)

Weather Warning Information (Traditional Chinese)

https://data.weather.gov.hk/weatherAPI/opendata/weather.php?dataType=warningInfo&lang=tc

Returns:

  • Warning_Summary: Array of active warnings (typhoon, rainstorm, cold weather, etc.)
  • Signal numbers for tropical cyclone and rainstorm warnings
  • Issue times and warning descriptions
  • Special_Warning: Additional special weather tips (if any)
  • Reminder_Warning: Reminder messages (if any)

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 (山泥傾瀉警告) 🏔️

Usage

Fetch Current Weather Only

curl -s "https://data.weather.gov.hk/weatherAPI/opendata/weather.php?dataType=rhrread&lang=tc"

Fetch 9-Day Forecast Only

curl -s "https://data.weather.gov.hk/weatherAPI/opendata/weather.php?dataType=fnd&lang=tc"

Fetch Weather Warnings Only

curl -s "https://data.weather.gov.hk/weatherAPI/opendata/weather.php?dataType=warningInfo&lang=tc"

Fetch All (Recommended)

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"

Output Format

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:

## ⚠️ 天氣警告及信號

目前沒有生效警告

## 🌤️ 香港天氣
...

Error Handling

Rate Limiting

  • HKO API does not enforce strict rate limits
  • Recommended: Cache responses for 10-15 minutes
  • If API fails, wait 5 seconds and retry once

API Failures

  • If current weather fails: Return forecast only with error notice
  • If forecast fails: Return current weather only with error notice
  • If both fail: Return friendly error message suggesting retry

Timeout

  • Set timeout to 10 seconds per request
  • HKO servers are generally reliable but can be slow during peak times

Scripts

See scripts/fetch-weather.sh for a ready-to-use fetcher with Traditional Chinese output.

References

Example Response Structure

Current Weather (rhrread) - Traditional Chinese

{
  "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": "高"}]
  }
}

Forecast (fnd) - Traditional Chinese

{
  "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"
}

Weather Warning Info (warningInfo) - Traditional Chinese

{
  "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:

{}

Notes

  • All times are in Hong Kong Time (HKT, UTC+8)
  • Temperature in Celsius (攝氏度)
  • Wind speeds in Hong Kong Observatory force scale
  • PSR (Probability of Significant Rain) values: 低,中低,中,高
  • Forecast updates twice daily (around 09:00 and 16:30 HKT)
  • Current weather updates every 10 minutes
  • Language: All output in Traditional Chinese (繁體中文)

Cron Job Configuration

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.

安全使用建议
This skill appears to do what it says: fetch HKO open-data endpoints and format Traditional Chinese Markdown with required attribution and disclaimer. Before installing, consider: 1) run the fetch scripts (bash scripts/fetch-weather.sh --format markdown --lang tc) manually to verify output in your environment; 2) the skill does not include an automatic Discord poster — if you want auto-posting you must configure OpenClaw or a bot (which will require separate credentials); 3) the installer will copy files into /app/skills and may prompt to overwrite — review install.sh and run it with appropriate privileges (or install to a safe test location first); 4) scripts use simple grep/sed parsing (not robust JSON handling everywhere) so outputs may break if HKO JSON changes—consider reviewing/adjusting parsing or relying on jq; 5) note HKO data is non-commercial and requires attribution/disclaimer as described — ensure your use complies with HKO terms. If you want extra assurance, inspect or run the scripts in an isolated environment before integrating into a production OpenClaw gateway.
功能分析
Type: OpenClaw Skill Name: hko-weather Version: 1.0.0 The HKO Weather Skill is a legitimate tool designed to fetch and format weather data from the Hong Kong Observatory (HKO) Open Data API. The installation script (install.sh) and functional scripts (scripts/fetch-weather.sh, scripts/test-hko.sh) perform standard operations consistent with the stated purpose, such as dependency checking, file copying, and making authenticated-free API calls to 'data.weather.gov.hk'. No evidence of data exfiltration, persistence mechanisms, or malicious prompt injection was found; the code follows HKO's licensing requirements for attribution and non-commercial use.
能力评估
Purpose & Capability
The name/description (HKO weather + Discord-ready markdown) matches the scripts and SKILL.md: the scripts fetch HKO open-data endpoints and format Markdown with the required HKO attribution/disclaimer. Minor mismatches: README and clawhub.json advertise Discord 'integration' and automatic posting, but there is no code that posts to Discord or requires a Discord token — the skill only emits Markdown/JSON and expects OpenClaw or an external bot to handle posting. Also some docs mention 7-day vs 9-day forecasts inconsistently.
Instruction Scope
SKILL.md and scripts instruct only to call HKO open-data endpoints (data.weather.gov.hk / hko.gov.hk) and format output. The scripts do not read unrelated local files, do not access secrets, and do not call external endpoints other than HKO. The installer/test scripts do attempt to call HKO API for connectivity checks. A small inconsistency: the installer tests https://www.hko.gov.hk/en/api/current-weather while the fetch scripts use data.weather.gov.hk; both are HKO-related but different endpoints.
Install Mechanism
There is no remote download in the install process; install.sh simply copies the skill directory into a target skills path, sets permissions, and optionally reloads OpenClaw. No URL-based archives or external installers are fetched. The installer requires typical CLI tools (curl, jq) and prompts before overwrite or uninstall.
Credentials
The skill declares no required environment variables or credentials. README/clawhub.json document optional env vars (HKO_LANGUAGE, HKO_DISCORD_CHANNEL, HKO_AUTO_REFRESH) for configuration only. Nothing in the code attempts to read secrets or unrelated credentials. Be aware: actual Discord posting would require bot credentials configured elsewhere in OpenClaw, but those are not requested by this skill.
Persistence & Privilege
Flags show always:false and the skill does not assert permanent privileged presence. The installer copies files under /app/skills (standard for OpenClaw skills) and does not modify other skills' configs. It may prompt to overwrite existing skill files.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install hko-weather
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /hko-weather 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release with HKO API integration, Traditional Chinese support, and license compliance
元数据
Slug hko-weather
版本 1.0.0
许可证 MIT-0
累计安装 1
当前安装数 1
历史版本数 1
常见问题

HKO Weather 是什么?

從香港天文台獲取實時天氣、9日預報及天氣警告信號,提供繁體中文格式化報告,適用於Discord發布。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 113 次。

如何安装 HKO Weather?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install hko-weather」即可一键安装,无需额外配置。

HKO Weather 是免费的吗?

是的,HKO Weather 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

HKO Weather 支持哪些平台?

HKO Weather 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 HKO Weather?

由 firenai3424(@firenai3424)开发并维护,当前版本 v1.0.0。

💬 留言讨论