weather
Get weather forecast for any location worldwide using wttr.in
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Get weather forecast for any location worldwide using wttr.in
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Perform mathematical calculations, unit conversions, and solve math problems
Manage GitHub repositories, issues, and pull requests using the gh CLI
A simple greeting skill for testing and demonstrations
Generate rich interactive UI specs that render as React components in the chat interface. Use when the user asks for charts, tables, dashboards, metrics, comparisons, timelines, or any structured data visualization. Output a ```spec block after your text response.
Create, manage, and search personal notes
Summarize text, articles, documents, and web pages using AI
Based on SOC occupation classification
| name | weather |
| description | Get weather forecast for any location worldwide using wttr.in |
| metadata | {"agent-player":{"emoji":"๐ค๏ธ","version":"1.0.0","author":"Agent Player Team","category":"utilities","tags":["weather","forecast","wttr.in"],"triggers":["weather","forecast","temperature","what's the weather","how's the weather"],"settings":[{"key":"units","type":"select","label":"Temperature Units","default":"metric","options":[{"value":"metric","label":"Celsius (ยฐC)"},{"value":"imperial","label":"Fahrenheit (ยฐF)"}]},{"key":"format","type":"select","label":"Output Format","default":"short","options":[{"value":"short","label":"Short summary"},{"value":"full","label":"Full forecast"}]},{"key":"default_location","type":"string","label":"Default Location"}],"requires":{"bins":["curl"],"apis":["wttr.in"]}}} |
Get current weather and forecast for any location worldwide using wttr.in.
Ask about weather naturally:
What's the weather in London?
Weather forecast for Tokyo
Temperature in New York
How's the weather in Dubai?
Uses free wttr.in service:
# Short format
curl -s "wttr.in/London?format=1"
# Output: London: โ
๏ธ +18ยฐC
# Full format
curl -s "wttr.in/London?format=3"
| Parameter | Description |
|---|---|
format=1 | One-line summary |
format=3 | Detailed with wind/visibility |
u | Imperial units (Fahrenheit) |
m | Metric units (Celsius) |
lang=ar | Arabic language |
London: โ๏ธ +22ยฐC
London
\ / Partly cloudy
_ /"".-. 18 ยฐC
\_( ). โ 15 km/h
/(___(__) 10 km
0.0 mm
โโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโ
โ Today โ Tomorrow โ Day 3 โ
โโโโโโโโโโโโโโโผโโโโโโโโโโโโโโผโโโโโโโโโโโโโโค
โ โ๏ธ 22ยฐC โ โ
20ยฐC โ ๐ง๏ธ 18ยฐC โ
โ Wind: 10km โ Wind: 15km โ Wind: 20km โ
โโโโโโโโโโโโโโโดโโโโโโโโโโโโโโดโโโโโโโโโโโโโโ
User: "What's the weather in Paris?"
Response:
๐ค๏ธ Weather in Paris
Paris: โ๏ธ +22ยฐC
Wind: 12 km/h
Humidity: 55%
User: "3-day forecast for Tokyo"
Response:
๐ค๏ธ Tokyo Weather Forecast
Today: โ๏ธ Sunny, 25ยฐC
Tomorrow: โ
Partly Cloudy, 23ยฐC
Day 3: ๐ง๏ธ Light Rain, 20ยฐC
| Setting | Type | Default | Description |
|---|---|---|---|
units | select | metric | Celsius or Fahrenheit |
format | select | short | Short or full forecast |
default_location | string | - | Your default city |
curl command