weather
Installation
SKILL.md
Weather
Overview
Get weather data using wttr.in — free, no API key, works from the terminal.
Commands
Current weather (one-line)
curl -s "wttr.in/Paris?format=3"
# Paris: ⛅️ +12°C
Detailed format
curl -s "wttr.in/Paris?format=%l:+%c+%t+%h+%w"
# Paris: ⛅️ +12°C 65% →10km/h
Full forecast (3 days)
curl -s "wttr.in/Paris?T"
Today only
curl -s "wttr.in/Paris?1"
Current conditions only
curl -s "wttr.in/Paris?0"
Format Codes
| Code | Meaning |
|---|---|
%c |
Condition icon |
%t |
Temperature |
%h |
Humidity |
%w |
Wind |
%l |
Location |
%m |
Moon phase |
%p |
Precipitation |
%P |
Pressure |
Tips
- URL-encode spaces:
wttr.in/New+Yorkorwttr.in/New%20York - Use airport codes:
wttr.in/CDG - Metric:
?m, Imperial:?u - JSON output:
wttr.in/Paris?format=j1 - PNG image:
curl -s "wttr.in/Paris.png" -o /tmp/weather.png
Fallback: Open-Meteo
If wttr.in is down, use Open-Meteo (free, JSON, no key):
curl -s "https://api.open-meteo.com/v1/forecast?latitude=48.85&longitude=2.35¤t_weather=true"
Related skills
More from phuetz/code-buddy
blender
Blender 3D modeling, animation, and rendering automation via Python bpy scripting and CLI
19figma
Automate Figma design workflows via REST API, Plugin API, and MCP integration
3github
Interact with GitHub using the gh CLI for issues, PRs, CI runs, releases, and API queries
3gif-search
Search and download GIFs from Tenor and Giphy APIs
3ableton-live
Ableton Live music production automation via OSC protocol, MIDI, and Max for Live
3gitlab
GitLab DevOps platform with CI/CD pipelines, API automation, and glab CLI control
3