Instructions for fetching current weather temperature data for Karachi, Pakistan from wttr.in API
Install
npx skillscat add shanraisshan/claude-code-best-practice/weather-fetcher Install via the SkillsCat registry.
SKILL.md
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:
Current Karachi Temperature: [X]°C
Status: Successfully fetched weather dataNotes
- 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