# Weather

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

- Skill: `zhizhunbao/weather` (Agent Skill)
- Install (CLI): `npx skillmds@latest add zhizhunbao/weather`
- Raw SKILL.md: https://api.skillmd.com/api/skills/zhizhunbao/weather/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Integrations & APIs
- Author: zhizhunbao (https://skillmd.com/u/zhizhunbao)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/zhizhunbao/weather

---


# Weather

Two free services, no API keys needed.

## wttr.in (primary)

```bash
curl -s "wttr.in/London?format=3"
curl -s "wttr.in/London?format=%l:+%c+%t+%h+%w"
curl -s "wttr.in/London?T"
```

Format codes: `%c` condition, `%t` temp, `%h` humidity, `%w` wind, `%l` location

Tips:
- URL-encode spaces: `wttr.in/New+York`
- Airport codes: `wttr.in/JFK`
- Units: `?m` (metric) `?u` (USCS)
- Today only: `?1`, Current only: `?0`

## Open-Meteo (fallback, JSON)

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

