Marine Forecast
PassAudited by ClawScan on May 1, 2026.
Overview
This instruction-only skill coherently fetches marine weather from Open-Meteo; the main thing to notice is that requested location coordinates are sent to that weather service.
This appears safe to install as an instruction-only weather skill. Be aware that using it requires sharing the requested latitude/longitude with Open-Meteo, and verify marine conditions with official sources before making safety-critical boating decisions.
Findings (2)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
The agent may make network requests to fetch forecast data when the skill is invoked.
The skill directs the agent to use curl for external API calls. This is purpose-aligned and constrained to Open-Meteo weather endpoints.
curl -s "https://marine-api.open-meteo.com/v1/marine?latitude=LAT&longitude=LON...
Use it for intended marine forecast lookups and review any generated command if you are concerned about sharing a location.
A precise requested location may be sent to Open-Meteo when retrieving forecasts.
Forecast requests include latitude, longitude, and timezone. The provider is disclosed, and this data is necessary for the stated purpose, but it is still a third-party data flow.
replace `LAT`, `LON`, and `TZ` in all commands
Avoid using highly sensitive personal locations if you do not want them sent to the weather API provider.
