Weather Like Test
PassAudited by ClawScan on May 1, 2026.
Overview
This is a simple weather lookup skill that uses curl to query public weather services and does not request credentials or persistent access.
This skill appears safe for normal weather lookups. Be aware that any city, airport code, or coordinates you query will be sent to the referenced weather services.
Findings (1)
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.
Weather locations or coordinates you ask about may be sent to the listed public weather services.
The skill instructs use of curl to call public weather APIs; this is a network/tool capability, but it directly matches the weather lookup purpose and does not involve credentials or unrelated actions.
curl -s "wttr.in/London?format=3" ... curl -s "https://api.open-meteo.com/v1/forecast?latitude=51.5&longitude=-0.12¤t_weather=true"
Only query locations you are comfortable sharing with those services, and prefer HTTPS-form URLs when available, such as https://wttr.in/.
