Skip to main content
ClaudeWave
Skill2.5k estrellas del repoactualizado today

wttr-weather

Weather via wttr.in GET (no key). Use for weather/forecast; prefer os.http.request.

Instalar en Claude Code
Copiar
git clone --depth 1 https://github.com/AtomicBot-ai/atomic-agent /tmp/wttr-weather && cp -r /tmp/wttr-weather/starter-skills/wttr-weather ~/.claude/skills/wttr-weather
Después abre una sesión nueva de Claude Code; el skill carga automáticamente.

SKILL.md

# wttr-weather

`os.http.request` **GET** (allowlist must include `wttr.in` if not null):

- `https://wttr.in/<Place>?format=3` — one-line text  
- `https://wttr.in/<Place>?format=j1` — JSON  
- No place: `https://wttr.in/?format=3`  
- Metric/imperial: append `&m` or `&u`

No `wttr` binary. No `skill.run_script`. Fallback: `curl -fsS --max-time 25 '<url>'` via `os.shell.run`.