Weather Fetcher Skill
This skill provides instructions for fetching current weather data.
Task
Fetch the current temperature for Karachi, Pakistan in degrees Celsius (Centigrade).
Instructions
- •
Fetch Weather Data: Use the WebFetch tool to get current weather data for Karachi from wttr.in API:
- •URL:
https://wttr.in/Karachi?format=j1 - •This returns JSON format weather data
- •URL:
- •
Extract Temperature: From the JSON response, extract the current temperature in Celsius from the
current_conditionsection. - •
Store Result: Keep the temperature value for the next step (transformation).
Expected Output
After completing this skill's instructions:
code
Current Karachi Temperature: [X]°C Status: Successfully fetched weather data
Notes
- •Only fetch the temperature, do not perform any transformations yet
- •Use wttr.in as it provides reliable, free weather data
- •Return just the numeric temperature value clearly