# Weather

> Get current weather conditions and short forecasts using `wttr.in` (no API key required). Use when users ask for weather, temperature, forecast, or conditions for a city, region, or location. Triggers on mentions of weather, forecast, temperature, rain, sunny, or climate.

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

---


# Weather

Use this skill for quick weather lookups without API keys.

## Current weather

```bash
curl -s "wttr.in/San+Francisco?format=3"
```

## Compact format

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

## Multi-day forecast

```bash
curl -s "wttr.in/San+Francisco?m"
```

## Usage guidance

- URL-encode spaces with `+`.
- Use `?m` for metric and `?u` for US units.
- For ambiguous place names, clarify state/country first.

