# Weather

> >

- **Type:** Skill
- **Install:** `agentstack add skill-claude-world-claude-agent-weather`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [claude-world](https://agentstack.voostack.com/s/claude-world)
- **Installs:** 0
- **Category:** [Agent Skills](https://agentstack.voostack.com/c/agent-skills)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [claude-world](https://github.com/claude-world)
- **Source:** https://github.com/claude-world/claude-agent/tree/main/.claude/skills/weather

## Install

```sh
agentstack add skill-claude-world-claude-agent-weather
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# Weather

Get weather data using `curl wttr.in` (no install needed) and the Open-Meteo API (free, no key).

## Prerequisites

No installation required. `curl` is available by default on macOS and Linux.

Optionally install `jq` for cleaner JSON parsing:
```bash
brew install jq
```

## Commands

**Quick current weather (compact):**
```bash
curl -s "wttr.in/?format=3"
```

**Full weather report (ASCII art):**
```bash
curl -s "wttr.in/"
```

**3-day forecast (JSON, for structured output):**
```bash
curl -s "wttr.in/?format=j1" | jq '.weather[0:3]'
```

**Current conditions only:**
```bash
curl -s "wttr.in/?format=%C+%t+feels+like+%f+humidity+%h"
```

**Open-Meteo for precise hourly forecast (by coordinates):**
```bash
curl -s "https://api.open-meteo.com/v1/forecast?latitude=&longitude=&current_weather=true&hourly=temperature_2m,precipitation_probability&forecast_days=3"
```

## Usage Examples

**Quick weather check:**
```bash
curl -s "wttr.in/Tokyo?format=3"
# → Tokyo: ⛅️  +18°C
```

**3-day forecast for Taipei:**
```bash
curl -s "wttr.in/Taipei?format=j1" | jq '.weather[] | {date: .date, max: .maxtempC, min: .mintempC, description: .hourly[4].weatherDesc[0].value}'
```

**Rain probability today (Open-Meteo):**
```bash
curl -s "https://api.open-meteo.com/v1/forecast?latitude=25.04&longitude=121.53&hourly=precipitation_probability&forecast_days=1" | jq '.hourly.precipitation_probability'
```

**Current conditions formatted:**
```bash
curl -s "wttr.in/London?format=%l:+%C,+%t+(feels+%f),+humidity+%h,+wind+%w"
```

## Rules

- Always check if `curl` is available: `which curl` (it almost always is)
- No API keys, no accounts — these are free public APIs
- URL-encode city names with spaces: replace spaces with `+` (e.g., `New+York`)
- Default to wttr.in for simplicity; use Open-Meteo when user needs hourly breakdown or precise rain probability
- If the user gives a city name, use it directly with wttr.in; if they give a landmark or neighborhood, geocode first via wttr.in (it handles most names)
- Format output in plain text — no raw JSON dumps to the user
- Keep responses concise: current temp, conditions, and forecast summary in 3-5 lines
- Include "feels like" temperature and precipitation chance when relevant

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [claude-world](https://github.com/claude-world)
- **Source:** [claude-world/claude-agent](https://github.com/claude-world/claude-agent)
- **License:** MIT

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** yes
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-claude-world-claude-agent-weather
- Seller: https://agentstack.voostack.com/s/claude-world
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
