weather
Installation
SKILL.md
Weather Skill
Provides current weather and forecasts for any location using Open-Meteo free APIs called directly via WebFetch:
- Open-Meteo Geocoding for resolving location names to coordinates
- Open-Meteo Forecast for weather data
Workflow
- Understand the user's request. Extract the location, time range, and whether they're planning travel. See examples below.
- Geocode the location using
WebFetchto call the Nominatim API (see below). If the result is ambiguous, ask the user to clarify. - Fetch weather using
WebFetchto call the Open-Meteo API with the lat/lon and appropriate parameters (see below). - Respond to the user with a clear summary. See example outputs below.
- If travel intent is detected, also read
references/clothing_guide.mdand include relevant clothing advice.
API Calls
Related skills