weather
Get weather forecast for any location worldwide using wttr.in
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Get weather forecast for any location worldwide using wttr.in
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
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
| 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