TopRank Skills

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

marine-forecast

Marine and sailing weather via Open-Meteo. Waves, swell, sea temperature, wind, tides, ocean currents, and sailing assessments. Free, no API key, global coverage.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

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

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

Overview

Skill Key
alexissan/marine-forecast
Author
alexissan
Source Repo
openclaw/skills
Version
-
Source Path
skills/alexissan/marine-forecast
Latest Commit SHA
1a1f07f0e0b67a16c8a0446ec2e63b808656b4d6

Extracted Content

SKILL.md excerpt

# Marine Forecast

Marine and sailing weather using Open-Meteo Marine API + Weather API. Free, no API key required, works worldwide.

Two APIs are used together — replace `LAT`, `LON`, and `TZ` in all commands:
- **Marine API** (`marine-api.open-meteo.com`) — waves, swell, sea temp, currents, tides
- **Weather API** (`api.open-meteo.com`) — wind, gusts, air temp, pressure, visibility

Find coordinates for any location using web search or the user's input. Use the nearest timezone (IANA format, e.g. `Europe/London`, `America/New_York`, `Atlantic/Canary`).

## Current conditions

Sea state:
```bash
curl -s "https://marine-api.open-meteo.com/v1/marine?latitude=LAT&longitude=LON&current=wave_height,wave_direction,wave_period,swell_wave_height,swell_wave_direction,swell_wave_period,sea_surface_temperature&timezone=TZ"
```

Wind and atmosphere:
```bash
curl -s "https://api.open-meteo.com/v1/forecast?latitude=LAT&longitude=LON&current=temperature_2m,wind_speed_10m,wind_direction_10m,wind_gusts_10m,apparent_temperature,pressure_msl,cloud_cover,visibility&timezone=TZ"
```

Run both and combine the results into a single briefing.

## Hourly forecast

Marine (up to 16 days, adjust `forecast_days`):
```bash
curl -s "https://marine-api.open-meteo.com/v1/marine?latitude=LAT&longitude=LON&hourly=wave_height,wave_direction,wave_period,swell_wave_height,swell_wave_direction,swell_wave_period,swell_wave_peak_period,wind_wave_height,wind_wave_direction,sea_surface_temperature,ocean_current_velocity,ocean_current_direction,sea_level_height_msl&forecast_days=3&timezone=TZ"
```

Wind (up to 16 days):
```bash
curl -s "https://api.open-meteo.com/v1/forecast?latitude=LAT&longitude=LON&hourly=wind_speed_10m,wind_direction_10m,wind_gusts_10m,temperature_2m,pressure_msl,visibility,cloud_cover,precipitation_probability&forecast_days=3&timezone=TZ"
```

## Daily summary

Marine:
```bash
curl -s "https://marine-api.open-meteo.com/v1/marine?latitude=LAT&longitude=LON&daily=wave_height_max,wave_dir...

Related Claw Skills