Skip to main content
ClaudeWave
Skill2.5k repo starsupdated 3d ago

wttr-weather

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

Install in Claude Code
Copy
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
Then start a new Claude Code session; the skill loads automatically.

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`.