# Weather

> Weather

- Skill: `octos-org/weather` (Agent Skill, multi-file: 4 files)
- Install (CLI): `npx skillmds@latest add octos-org/weather`
- Raw SKILL.md: https://api.skillmd.com/api/skills/octos-org/weather/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: octos-org (https://skillmd.com/u/octos-org)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/octos-org/weather

---


# Weather

Get current weather conditions for any city worldwide using the free Open-Meteo API (no API key required).

## Tools

### get_weather

Returns current temperature, humidity, wind speed, and weather conditions for a given city.

```json
{"city": "Stockholm"}
```

**Parameters:**
- `city` (required): City name, optionally with country. Examples: `Stockholm`, `Tokyo`, `New York, US`, `上海`, `Paris, France`

### get_forecast

Returns multi-day weather forecast with daily high/low temperatures, conditions, precipitation, and wind.

```json
{"city": "Paris", "days": 7}
```

**Parameters:**
- `city` (required): City name, optionally with country
- `days` (optional): Number of forecast days, 1-16. Default: 7

