Agent skill
weather-fetcher
Instructions for fetching current weather temperature data for Dubai, UAE from Open-Meteo API
Install this agent skill to your Project
npx add-skill https://github.com/shanraisshan/claude-code-best-practice/tree/main/.claude/skills/weather-fetcher
SKILL.md
Weather Fetcher Skill
This skill provides instructions for fetching current weather data.
Task
Fetch the current temperature for Dubai, UAE in the requested unit (Celsius or Fahrenheit).
Instructions
-
Fetch Weather Data: Use the WebFetch tool to get current weather data for Dubai from the Open-Meteo API.
For Celsius:
- URL:
https://api.open-meteo.com/v1/forecast?latitude=25.2048&longitude=55.2708¤t=temperature_2m&temperature_unit=celsius
For Fahrenheit:
- URL:
https://api.open-meteo.com/v1/forecast?latitude=25.2048&longitude=55.2708¤t=temperature_2m&temperature_unit=fahrenheit
- URL:
-
Extract Temperature: From the JSON response, extract the current temperature:
- Field:
current.temperature_2m - Unit label is in:
current_units.temperature_2m
- Field:
-
Return Result: Return the temperature value and unit clearly.
Expected Output
After completing this skill's instructions:
Current Dubai Temperature: [X]°[C/F]
Unit: [Celsius/Fahrenheit]
Notes
- Only fetch the temperature, do not perform any transformations or write any files
- Open-Meteo is free, requires no API key, and uses coordinate-based lookups for reliability
- Dubai coordinates: latitude 25.2048, longitude 55.2708
- Return the numeric temperature value and unit clearly
- Support both Celsius and Fahrenheit based on the caller's request
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
time-fetcher
Instructions for fetching current Dubai time via bash command
time-svg-creator
Creates an SVG time card showing the current time for Dubai. Writes the SVG to agent-teams/output/dubai-time.svg and updates agent-teams/output/output.md.
presentation-styling
Knowledge about CSS classes, component patterns, and syntax highlighting in the presentation
presentation-structure
Knowledge about the presentation slide format, weight system, navigation, and section structure
vibe-to-agentic-framework
The conceptual framework behind the presentation — what "Vibe Coding to Agentic Engineering" means, why the journey is structured the way it is, and how every slide fits the narrative arc
weather-svg-creator
Creates an SVG weather card showing the current temperature for Dubai. Writes the SVG to orchestration-workflow/weather.svg and updates orchestration-workflow/output.md.
Didn't find tool you were looking for?