Get current weather and forecasts (no API key required).
Scanned 9/8/2026
Install to Claude Code
npx -y skills add infometa/workbuddyskills --skill weather --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Weather?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/infometa-weather-workbuddyskills)More formats (shields.io, HTML) on the badges page.
---
name: weather
description: "Get current weather and forecasts (no API key required)."
description_zh: "查询天气预报,无需 API 密钥"
description_en: "Weather forecasts, no API key needed"
version: 1.0.0
---
# 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¤t_weather=true"
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!