# Weather

> Current weather and forecasts with wttr.in via curl for locations, rain, temperature, travel planning.

- Skill: `aniruddhaadak80/weather` (Agent Skill)
- Install (CLI): `npx skillmds add aniruddhaadak80/weather`
- Raw SKILL.md: https://api.skillmd.com/api/skills/aniruddhaadak80/weather/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: aniruddhaadak80 (https://skillmd.com/u/aniruddhaadak80)
- Updated: 2026-08-19
- Page: https://skillmd.com/skills/aniruddhaadak80/weather

---


# Weather

Use for current weather, rain/temperature checks, forecasts, and travel planning. Need a city, region, airport code, or coordinates.

## Commands

```bash
curl "wttr.in/London?format=3"
curl "wttr.in/London?0"
curl "wttr.in/London"
curl "wttr.in/London?format=v2"
curl "wttr.in/London?1"
curl "wttr.in/New+York?format=3"
```

Useful formats:

- `%l`: location
- `%c`: condition icon
- `%t`: temperature
- `%f`: feels like
- `%w`: wind
- `%h`: humidity
- `%p`: precipitation

```bash
curl "wttr.in/London?format=%l:+%c+%t,+feels+%f,+rain+%p,+wind+%w"
```

JSON:

```bash
curl "wttr.in/London?format=j1"
```

## Notes

- For severe alerts, aviation, marine, or official decisions, use official local weather services.
- For historical climate/weather, use an archive/API, not wttr.in.
- For hyper-local microclimates, prefer local sensors.

