Weather Tool
Fetches current weather for a given city.
Usage
CITY="London"
curl -s "https://api.openweathermap.org/data/2.5/weather?q=${CITY}&appid=${OPENWEATHER_API_KEY}" | jq '.main.temp'
Notes
- Requires a valid OpenWeatherMap API key set as
OPENWEATHER_API_KEY. - Uses
curlandjqwhich are declared in the requirements.