Get Croatian weather data, forecasts, and alerts from DHMZ (meteo.hr) - no API key required.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install dhmz-weather或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install dhmz-weather⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/dhmz-weather/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: dhmz-weather description: Get Croatian weather data, forecasts, and alerts from DHMZ (meteo.hr) - no API key required. homepage: https://meteo.hr/proizvodi.php?section=podaci¶m=xml_korisnici metadata: { "openclaw": { "emoji": "🇭🇷", "requires": { "bins": ["curl"] } } } ---
Croatian Meteorological and Hydrological Service (DHMZ) provides free XML APIs. All data in Croatian, no authentication needed.
When this skill is invoked:
/dhmz-weather Zagreb): Immediately fetch and display weather for that cityDo not ask the user what they want - just fetch the weather data immediately and present it in a readable format.
Use these emojis when displaying weather data to make it more intuitive:
| Croatian | English | Emoji | |----------|---------|-------| | vedro, sunčano | clear, sunny | ☀️ | | djelomično oblačno | partly cloudy | ⛅ | | pretežno oblačno | mostly cloudy | 🌥️ | | potpuno oblačno | overcast | ☁️ | | slaba kiša | light rain | 🌦️ | | kiša | rain | 🌧️ | | jaka kiša | heavy rain | 🌧️🌧️ | | grmljavina | thunderstorm | ⛈️ | | snijeg | snow | 🌨️ | | susnježica | sleet | 🌨️🌧️ | | magla | fog | 🌫️ | | rosa | dew | 💧 |
| Metric | Emoji | |--------|-------| | Temperature | 🌡️ | | Humidity | 💧 | | Pressure | 📊 | | Wind | 💨 | | Rain/Precipitation | 🌧️ | | UV Index | ☀️ | | Sea temperature | 🌊 |
| Description | Emoji | |-------------|-------| | calm, light | 🍃 | | moderate | 💨 | | strong/windy (vjetrovito) | 💨💨 | | stormy (olujni) | 🌬️ |
| Level | Emoji | |-------|-------| | Green (no warning) | 🟢 | | Yellow | 🟡 | | Orange | 🟠 | | Red | 🔴 |
All Croatian stations (alphabetical):
curl -s "https://vrijeme.hr/hrvatska_n.xml"
By regions:
curl -s "https://vrijeme.hr/hrvatska1_n.xml"
European cities:
curl -s "https://vrijeme.hr/europa_n.xml"
Max temperatures:
curl -s "https://vrijeme.hr/tx.xml"
Min temperatures:
curl -s "https://vrijeme.hr/tn.xml"
Min at 5cm (ground frost):
curl -s "https://vrijeme.hr/t5.xml"
Adriatic sea temperature:
curl -s "https://vrijeme.hr/more_n.xml"
River temperatures:
curl -s "https://vrijeme.hr/temp_vode.xml"
Precipitation data:
curl -s "https://vrijeme.hr/oborina.xml"
Snow height:
curl -s "https://vrijeme.hr/snijeg_n.xml"
Today's forecast:
curl -s "https://prognoza.hr/prognoza_danas.xml"
Tomorrow's forecast:
curl -s "https://prognoza.hr/prognoza_sutra.xml"
3-day outlook:
curl -s "https://prognoza.hr/prognoza_izgledi.xml"
Regional forecasts:
curl -s "https://prognoza.hr/regije_danas.xml"
3-day meteograms (detailed):
curl -s "https://prognoza.hr/tri/3d_graf_i_simboli.xml"
7-day meteograms:
curl -s "https://prognoza.hr/sedam/hrvatska/7d_meteogrami.xml"
Today's warnings:
curl -s "https://meteo.hr/upozorenja/cap_hr_today.xml"
Tomorrow's warnings:
curl -s "https://meteo.hr/upozorenja/cap_hr_tomorrow.xml"
Day after tomorrow:
curl -s "https://meteo.hr/upozorenja/cap_hr_day_after_tomorrow.xml"
UV index:
curl -s "https://vrijeme.hr/uvi.xml"
Forest fire risk index:
curl -s "https://vrijeme.hr/indeks.xml"
Biometeorological forecast (health):
curl -s "https://prognoza.hr/bio_novo.xml"
Heat wave alerts:
curl -s "https://prognoza.hr/toplinskival_5.xml"
Cold wave alerts:
curl -s "https://prognoza.hr/hladnival.xml"
Nautical forecast:
curl -s "https://prognoza.hr/jadran_h.xml"
Maritime forecast (sailors):
curl -s "https://prognoza.hr/pomorci.xml"
Agro bulletin:
curl -s "https://klima.hr/agro_bilten.xml"
Soil temperature:
curl -s "https://vrijeme.hr/agro_temp.xml"
7-day agricultural data:
curl -s "https://klima.hr/agro7.xml"
Hydro bulletin:
curl -s "https://hidro.hr/hidro_bilten.xml"
xmllint or pipe to a JSON converterExtract specific station with xmllint:
curl -s "https://vrijeme.hr/hrvatska_n.xml" | xmllint --xpath "//Grad[GradIme='Zagreb']" -
Convert to JSON (requires xq from yq package):
curl -s "https://vrijeme.hr/hrvatska_n.xml" | xq .
Zagreb, Split, Rijeka, Osijek, Zadar, Pula, Dubrovnik, Slavonski Brod, Karlovac, Varazdin, Sisak, Bjelovar, Cakovec, Gospic, Knin, Makarska, Sibenik
Official DHMZ (Drzavni hidrometeoroloski zavod) - Croatian Meteorological and Hydrological Service:
安装 DHMZ Weather 后,可以对 AI 说这些话来触发它
Help me get started with DHMZ Weather
Explains what DHMZ Weather does, walks through the setup, and runs a quick demo based on your current project
Use DHMZ Weather to get Croatian weather data, forecasts, and alerts from DHMZ (meteo
Invokes DHMZ Weather with the right parameters and returns the result directly in the conversation
What can I do with DHMZ Weather in my data & analytics workflow?
Lists the top use cases for DHMZ Weather, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/dhmz-weather/ 目录(个人级,所有项目可用),或 .claude/skills/dhmz-weather/(项目级)。重启 AI 客户端后,用 /dhmz-weather 主动调用,或让 AI 根据上下文自动发现并使用。
DHMZ Weather 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
DHMZ Weather 可免费安装使用。请查阅仓库了解许可证信息。
Get Croatian weather data, forecasts, and alerts from DHMZ (meteo.hr) - no API key required.
DHMZ Weather 属于「Data & Analytics」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my data & analytics tasks using DHMZ Weather
Identifies repetitive steps in your workflow and sets up DHMZ Weather to handle them automatically