# Weather Forecast

> Get current weather and forecast for any location worldwide

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

---


# Weather Forecast Skill

This skill provides comprehensive weather information for any location worldwide.

## Features

- Current weather conditions (temperature, humidity, wind speed)
- Multi-day forecast (up to 7 days)
- Weather descriptions and conditions
- Temperature in Celsius and Fahrenheit
- Wind speed and direction
- Humidity and pressure information

## Usage

The skill accepts a location (city name or coordinates) and optionally the number of forecast days.

## Example

```python
result = weather_forecast(location="Paris", days=3)
```

## Output Format

Returns a formatted string with:
- Current conditions
- Daily forecasts with high/low temperatures
- Weather descriptions
- Additional meteorological data

## Notes

- Uses OpenWeatherMap API (or mock data if API key not configured)
- Handles location parsing and validation
- Provides user-friendly error messages for invalid locations
