Free SKILL.md scraped from GitHub. Clone the repo or copy the file directly into your Claude Code skills directory.
npx versuz@latest install dannyfish-11-ufo-galaxy-realization-v2-skills-examples-weathergit clone https://github.com/DannyFish-11/ufo-galaxy-realization-v2.gitcp ufo-galaxy-realization-v2/SKILL.MD ~/.claude/skills/dannyfish-11-ufo-galaxy-realization-v2-skills-examples-weather/SKILL.md---
name: weather
description: "Get current weather and forecasts via wttr.in"
version: "1.0.0"
author: "Galaxy"
tags: ["weather", "api", "forecast"]
homepage: "https://wttr.in"
---
# Weather Skill
Get current weather conditions and forecasts.
## When to Use
✅ **USE this skill when:**
- "What's the weather?"
- "Will it rain today?"
- "Temperature in [city]"
- "Weather forecast for the week"
## When NOT to Use
❌ **DON'T use this skill when:**
- Historical weather data
- Climate analysis
- Severe weather alerts
## Commands
### Current Weather
```bash
# One-line summary
curl "wttr.in/{city}?format=3"
# Detailed conditions
curl "wttr.in/{city}?0"
```
### Forecasts
```bash
# 3-day forecast
curl "wtt.in/{city}"
# JSON output
curl "wttr.in/{city}?format=j1"
```
## Examples
**"What's the weather in London?"**
```bash
curl -s "wttr.in/London?format=%l:+%c+%t+(feels+like+%f)"
```
**"Will it rain in Tokyo?"**
```bash
curl -s "wttr.in/Tokyo?format=%l:+%c+%p"
```