Install
openclaw skills install hk-weatherHong Kong weather information from the Hong Kong Observatory (HKO) official open data API. Use when: user asks about Hong Kong weather, temperature, rainfall, UV index, weather warnings (typhoon, rainstorm, thunderstorm), or 9-day forecast. NOT for: global weather, historical climate data, or non-HK locations. Supports Traditional Chinese and English output. No API key needed.
openclaw skills install hk-weatherGet real-time weather, warnings, and forecasts from the Hong Kong Observatory (HKO) official open data API. Zero dependencies, zero API keys.
python3 scripts/hk_weather.py current [tc|en]python3 scripts/hk_weather.py warning [tc|en]python3 scripts/hk_weather.py forecast [tc|en]python3 scripts/hk_weather.py all [tc|en]https://data.weather.gov.hk/*scripts/__pycache__/tc: When user asks in Chinese/Cantonese, use python3 scripts/hk_weather.py current tcen: When user asks in English, use python3 scripts/hk_weather.py current entc if language is unclear (Hong Kong primary language)Real-time temperature, humidity, rainfall, UV index, and conditions.
# Chinese output (default for HK)
python3 scripts/hk_weather.py current tc
# English output
python3 scripts/hk_weather.py current en
Check active warnings (typhoon, rainstorm, thunderstorm, etc.).
python3 scripts/hk_weather.py warning tc
python3 scripts/hk_weather.py warning en
Extended forecast with temperature range, humidity, and rain probability.
python3 scripts/hk_weather.py forecast tc
python3 scripts/hk_weather.py forecast en
Combined current + warnings + forecast (first 3 days).
python3 scripts/hk_weather.py all tc
python3 scripts/hk_weather.py all en
"今天香港天氣點?"
python3 scripts/hk_weather.py current tc
"What's the weather in Hong Kong?"
python3 scripts/hk_weather.py current en
"有冇暴雨警告?"
python3 scripts/hk_weather.py warning tc
"Forecast for the week"
python3 scripts/hk_weather.py forecast en
"香港天氣點?有冇警告?未來幾日預報?"
python3 scripts/hk_weather.py all tc