Skip to main content Skills Marketplace Descubre y explora habilidades de IA creadas por la comunidad.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Copiar promptMostrar detalles del prompt Un comando directo omite el prompt de revisión. Revisa el origen antes de ejecutarlo.
npx skills add https://github.com/johnalbertini14-glitch/openclaw-skills --skill dhmz-weatherEl comando permanece en una sola línea. Desplázate horizontalmente para revisarlo antes de copiarlo.
¿Prefieres una copia local? Descarga los archivos que SkillsMP tiene disponibles ahora.
Descargar Zip Descargando... Ocupaciones relacionadas SOC
Basado en la clasificación ocupacional SOC
Explorador de archivos
3 archivos 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"]}}}
DHMZ Weather (Croatia)
Croatian Meteorological and Hydrological Service (DHMZ) provides free XML APIs. All data in Croatian, no authentication needed.
Default Behavior
When this skill is invoked:
If a city is provided as argument (e.g., /dhmz-weather Zagreb): Immediately fetch and display weather for that city
If no city is provided : Infer the city from conversation context (user's location, previously mentioned cities, or project context). If no context available, default to Zagreb (capital city)
Do not ask the user what they want - just fetch the weather data immediately and present it in a readable format.
Weather Emojis
Use these emojis when displaying weather data to make it more intuitive:
Conditions
Croatian English Emoji vedro, sunčano clear, sunny ☀️ djelomično oblačno
pretežno oblačno mostly cloudy 🌥️
potpuno oblačno overcast ☁️
Metrics Metric Emoji Temperature 🌡️ Humidity 💧 Pressure 📊 Wind 💨 Rain/Precipitation 🌧️ UV Index ☀️ Sea temperature 🌊
Wind Strength Description Emoji calm, light 🍃 moderate 💨 strong/windy (vjetrovito) 💨💨 stormy (olujni) 🌬️
Alerts Level Emoji Green (no warning) 🟢 Yellow 🟡 Orange 🟠 Red 🔴
Current Weather All Croatian stations (alphabetical):
curl -s "https://vrijeme.hr/hrvatska_n.xml"
curl -s "https://vrijeme.hr/hrvatska1_n.xml"
curl -s "https://vrijeme.hr/europa_n.xml"
Temperature Extremes curl -s "https://vrijeme.hr/tx.xml"
curl -s "https://vrijeme.hr/tn.xml"
Min at 5cm (ground frost):
curl -s "https://vrijeme.hr/t5.xml"
Sea & Water Adriatic sea temperature:
curl -s "https://vrijeme.hr/more_n.xml"
curl -s "https://vrijeme.hr/temp_vode.xml"
Precipitation & Snow curl -s "https://vrijeme.hr/oborina.xml"
curl -s "https://vrijeme.hr/snijeg_n.xml"
Forecasts curl -s "https://prognoza.hr/prognoza_danas.xml"
curl -s "https://prognoza.hr/prognoza_sutra.xml"
curl -s "https://prognoza.hr/prognoza_izgledi.xml"
curl -s "https://prognoza.hr/regije_danas.xml"
3-day meteograms (detailed):
curl -s "https://prognoza.hr/tri/3d_graf_i_simboli.xml"
curl -s "https://prognoza.hr/sedam/hrvatska/7d_meteogrami.xml"
Weather Alerts (CAP format) curl -s "https://meteo.hr/upozorenja/cap_hr_today.xml"
curl -s "https://meteo.hr/upozorenja/cap_hr_tomorrow.xml"
curl -s "https://meteo.hr/upozorenja/cap_hr_day_after_tomorrow.xml"
Specialized Data curl -s "https://vrijeme.hr/uvi.xml"
curl -s "https://vrijeme.hr/indeks.xml"
Biometeorological forecast (health):
curl -s "https://prognoza.hr/bio_novo.xml"
curl -s "https://prognoza.hr/toplinskival_5.xml"
curl -s "https://prognoza.hr/hladnival.xml"
Maritime / Adriatic curl -s "https://prognoza.hr/jadran_h.xml"
Maritime forecast (sailors):
curl -s "https://prognoza.hr/pomorci.xml"
Agriculture curl -s "https://klima.hr/agro_bilten.xml"
curl -s "https://vrijeme.hr/agro_temp.xml"
curl -s "https://klima.hr/agro7.xml"
Hydrology curl -s "https://hidro.hr/hidro_bilten.xml"
Tips
All responses are XML format
Data is in Croatian language
Station names use Croatian characters (UTF-8)
Updates vary: current data ~hourly, forecasts ~daily
For parsing, use xmllint or pipe to a JSON converter
Extract 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 .
Common Station Names Zagreb, Split, Rijeka, Osijek, Zadar, Pula, Dubrovnik, Slavonski Brod, Karlovac, Varazdin, Sisak, Bjelovar, Cakovec, Gospic, Knin, Makarska, Sibenik
Data Source Official DHMZ (Drzavni hidrometeoroloski zavod) - Croatian Meteorological and Hydrological Service: https://meteo.hr