npx skills add smithery/huangusaki --skill weather-fetcher
shanraisshan/claude-code-best-practice
weather-fetcher
Instructions for fetching current weather temperature data for Dubai, UAE from Open-Meteo API
Installation
npx skills add shanraisshan/claude-code-best-practice --skill weather-fetcher
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Current weather and forecasts with web_fetch, falling back to wttr.in curl for locations, rain,…
6.5K installs한국 날씨를 기상청 단기예보 조회서비스와 프록시 경유로 조회해 요약한다.
4.5K installsAutomate weather-based workflows, forecasts, alerts, and location-aware notifications
3.8K installsFetch WeatherKit current, minute, hourly, and daily forecasts; weather alerts; iOS 18+ changes,…
3K installs查询中国各地实时天气和天气预报,?
809 installs서울 행정동 이름을 정식? 우선·허용된 결정적 표기 별칭만으로 정규 place_id로 해석해 ASK 서울의 …
38 installsAlso in this package
Other skills from shanraisshan/claude-code-best-practice.
npx skills add shanraisshan/claude-code-best-practice
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Skill metadata
Parsed from SKILL.md frontmatter.
WebFetch(*)Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md1,588 B -
docs
SUMMARY.md113 B
History
- First seen on skills.sh
- First recorded snapshot · 327 installs
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=temperature2m&temperatureunit=celsius
For Fahrenheit: - URL: https://api.open-meteo.com/v1/forecast?latitude=25.2048&longitude=55.2708¤t=temperature2m&temperatureunit=fahrenheit
- Extract Temperature: From the JSON response, extract the current temperature:
- Field: current.temperature2m - Unit label is in: currentunits.temperature_2m
- 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