Openpaw c-weather
Weather forecasts and conditions — current, hourly, multi-day. No API key needed.
install
source · Clone the upstream repo
git clone https://github.com/daxaur/openpaw
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/daxaur/openpaw "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/c-weather" ~/.claude/skills/daxaur-openpaw-c-weather && rm -rf "$T"
manifest:
skills/c-weather/SKILL.mdsource content
Weather — Forecasts & Conditions
Get weather information using
curl and wttr.in. No API key required, no tool to install.
Commands
# Current weather (auto-detects location) curl -s "wttr.in?format=3" # Detailed current conditions curl -s "wttr.in?format=%l:+%c+%t+%h+%w+%p" # Full forecast (today + 2 days) curl -s "wttr.in" # Specific city curl -s "wttr.in/London" curl -s "wttr.in/New+York" curl -s "wttr.in/Tokyo" # Compact one-line curl -s "wttr.in/Paris?format=%l:+%c+%t+(feels+like+%f)+%h+humidity+%w+wind" # Today only curl -s "wttr.in/Berlin?1" # JSON output for parsing curl -s "wttr.in/London?format=j1" # Moon phase curl -s "wttr.in/Moon"
Format Codes
| Code | Meaning |
|---|---|
| Weather icon |
| Temperature |
| Feels like |
| Humidity |
| Wind |
| Precipitation |
| Location |
| Sunrise |
| Sunset |
Guidelines
- Default to the user's location (check memory/SOUL.md for city)
- Use compact format (
) for quick checksformat=3 - Use full output for detailed forecasts
- If the user asks about weather, always provide temperature and conditions
- Mention "feels like" temperature when it differs significantly