weather-forecast

Installation
SKILL.md

Weather Forecast Skill

You can check the weather for any city. Use the OpenWeatherMap API.

Usage

When the user asks about the weather, fetch data like this:

curl -s "https://api.openweathermap.org/data/2.5/weather?q=${CITY}&appid=${OPENWEATHER_API_KEY}&units=metric"

Parse the JSON response and tell the user:

  • Current temperature
  • Weather condition (sunny, cloudy, rainy)
  • Humidity percentage

Notes

  • Always use metric units unless the user specifies otherwise
  • Cache results for 10 minutes to avoid excessive API calls
Related skills
Installs
1
GitHub Stars
10
First Seen
Mar 4, 2026