Weather 1.0.0

PassAudited by VirusTotal on May 12, 2026.

Overview

Type: OpenClaw Skill Name: weather-1-0-0 Version: 1.0.0 The skill bundle is benign. It uses `curl` to fetch weather data from legitimate public APIs (`wttr.in` and `api.open-meteo.com`), as explicitly stated in the `SKILL.md` description and metadata. One example command saves a PNG image to `/tmp/weather.png`, which is a standard and non-malicious operation for a utility skill. There is no evidence of data exfiltration, malicious execution, persistence mechanisms, or prompt injection attempts against the agent.

Findings (0)

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.

What this means

A city name, airport code, or coordinates used in a query may be visible to the external weather service.

Why it was flagged

The skill sends location coordinates to an external weather provider; this is expected for the purpose, but users should understand the data leaves their environment.

Skill content
curl -s "https://api.open-meteo.com/v1/forecast?latitude=51.5&longitude=-0.12&current_weather=true"
Recommendation

Use only locations you are comfortable sending to the weather provider, and avoid sharing unnecessarily precise coordinates if approximate weather is sufficient.

What this means

A network observer could potentially see or modify a wttr.in query or response if it is made over unencrypted HTTP.

Why it was flagged

The primary wttr.in examples use curl with a scheme-less URL; if run as written, this may default to plaintext HTTP rather than explicitly using HTTPS.

Skill content
curl -s "wttr.in/London?format=3"
Recommendation

Prefer explicit HTTPS URLs, such as `https://wttr.in/London?format=3`, when using the wttr.in examples.