TopRank Skills

Home / Claw Skills / Intégration d'API / dhmz-weather
Official OpenClaw rules 36%

dhmz-weather

Get Croatian weather data, forecasts, and alerts from DHMZ (meteo.hr) - no API key required.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 dhmz-weather 技能。 若已安装,则直接安装 dhmz-weather 技能。

Overview

Skill Key
faleksic/dhmz-weather
Author
faleksic
Source Repo
openclaw/skills
Version
-
Source Path
skills/faleksic/dhmz-weather
Latest Commit SHA
879e2fc243abc1eea1d8d8d3b6b400c90ef15b9d

Extracted Content

SKILL.md excerpt

# 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:
1. **If a city is provided as argument** (e.g., `/dhmz-weather Zagreb`): Immediately fetch and display weather for that city
2. **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 | 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 | 💧 |

### 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):

```bash
curl -s "https://vrijeme.hr/hrvatska_n.xml"
```

By regions:

```bash
curl -s "https://vrijeme.hr/hrvatska1_n.xml"
```

European cities:

```bash
curl -s "https://vrijeme.hr/europa_n.xml"
```

## Temperature Extremes

Max temperatures:

```bash
curl -...

README excerpt

# DHMZ Weather Skill for Claude Code

A Claude Code skill for fetching Croatian weather data from DHMZ (Croatian Meteorological and Hydrological Service). No API key required.

## Features

- Current weather for 50+ Croatian stations
- 3-day and 7-day forecasts
- Adriatic sea temperatures
- Weather alerts (CAP format)
- Temperature extremes (min/max)
- Precipitation and snow data
- Maritime/nautical forecasts
- UV index, forest fire risk
- Agricultural and hydrological data

## Installation

Copy the `SKILL.md` file to your Claude Code skills directory:

```bash
# Create skills directory if it doesn't exist
mkdir -p ~/.claude/skills/dhmz-weather

# Copy the skill file
cp SKILL.md ~/.claude/skills/dhmz-weather/
```

## Usage

In Claude Code, use the slash command:

```
/dhmz-weather Zagreb
/dhmz-weather Split 3 dana
/dhmz-weather temperatura mora
```

### Examples

| Command | Description |
|---------|-------------|
| `/dhmz-weather` | Current weather for Zagreb (default) |
| `/dhmz-weather Zadar` | Current weather for Zadar |
| `/dhmz-weather Split 3 dana` | 3-day forecast for Split |
| `/dhmz-weather temperatura mora` | Adriatic sea temperatures |

## Supported Cities

Zagreb, Split, Rijeka, Osijek, Zadar, Pula, Dubrovnik, Slavonski Brod, Karlovac, Varazdin, Sisak, Bjelovar, Cakovec, Gospic, Knin, Makarska, Sibenik, and 30+ more stations.

## Requirements

- `curl` (for fetching XML data from DHMZ APIs)

## Data Source

All weather data is provided by [DHMZ](https://meteo.hr) (Drzavni hidrometeoroloski zavod) - the official Croatian Meteorological and Hydrological Service.

## License

MIT

Related Claw Skills