Weather Test

v1.0.0

Get current weather and forecasts (no API key required).

0· 121·0 current·0 all-time
by疯信子@happyzengfen·duplicate of @99percentgod/weather-1-0-0
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description say 'weather, no API key' and SKILL.md only uses curl against wttr.in and Open-Meteo — the requested capabilities are minimal and appropriate.
Instruction Scope
Runtime instructions are limited to forming HTTP requests to the documented public endpoints and an example of saving a PNG to /tmp. There are no instructions to read unrelated files, environment variables, or post data to other endpoints.
Install Mechanism
No install spec and no code files — instruction-only. This is the lowest-risk install profile.
Credentials
The skill declares no required environment variables, credentials, or config paths. That is proportionate for a read-only weather lookup using public endpoints.
Persistence & Privilege
Skill is not always-enabled and does not request elevated or persistent privileges. It does not modify other skills or system-wide settings.
Assessment
This skill is low-risk: it only runs curl against public weather services and needs no credentials. Consider that requests include the queried location in the URL and will expose your IP to those services (wttr.in/Open‑Meteo may log requests). The example writes a PNG to /tmp if you use that command. If you need strict privacy or offline operation, don't use networked skills; otherwise this skill is coherent with its stated purpose.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

🌤️ Clawdis
Binscurl
latestvk97fwqnn6gmsr07vrde3t8nw9n83bye1testvk97fwqnn6gmsr07vrde3t8nw9n83bye1
121downloads
0stars
1versions
Updated 4w ago
v1.0.0
MIT-0

Weather

Two free services, no API keys needed.

wttr.in (primary)

Quick one-liner:

curl -s "wttr.in/London?format=3"
# Output: London: ⛅️ +8°C

Compact format:

curl -s "wttr.in/London?format=%l:+%c+%t+%h+%w"
# Output: London: ⛅️ +8°C 71% ↙5km/h

Full forecast:

curl -s "wttr.in/London?T"

Format codes: %c condition · %t temp · %h humidity · %w wind · %l location · %m moon

Tips:

  • URL-encode spaces: wttr.in/New+York
  • Airport codes: wttr.in/JFK
  • Units: ?m (metric) ?u (USCS)
  • Today only: ?1 · Current only: ?0
  • PNG: curl -s "wttr.in/Berlin.png" -o /tmp/weather.png

Open-Meteo (fallback, JSON)

Free, no key, good for programmatic use:

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

Find coordinates for a city, then query. Returns JSON with temp, windspeed, weathercode.

Docs: https://open-meteo.com/en/docs

Comments

Loading comments...