lib/pocketrb/skills/builtin/weather/SKILL.md
Get weather forecasts using wttr.in (no API key required)
npx skillsauth add mensfeld/pocketrb weatherInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Get weather data using wttr.in - a console-oriented weather service that requires no API key.
# Simple one-line format
curl -s "wttr.in/London?format=3"
# Output: London: ⛅️ +8°C
# With more details
curl -s "wttr.in/London?format=%l:+%c+%t+%h+%w"
# Output: London: ⛅️ +8°C 65% ↙15km/h
# Current conditions only
curl -s "wttr.in/London?0"
# 3-day forecast (default)
curl -s "wttr.in/London"
# 1-day forecast
curl -s "wttr.in/London?1"
# 2-day forecast
curl -s "wttr.in/London?2"
# Metric units (Celsius, km/h)
curl -s "wttr.in/London?m"
# Imperial units (Fahrenheit, mph)
curl -s "wttr.in/London?u"
# Compact format (no terminal colors)
curl -s "wttr.in/London?T"
# Plain text (no ANSI)
curl -s "wttr.in/London?T"
Use format= for custom output:
| Symbol | Meaning | |--------|---------| | %c | Weather condition icon | | %C | Weather condition text | | %t | Temperature | | %f | "Feels like" temperature | | %h | Humidity | | %w | Wind | | %l | Location | | %m | Moon phase | | %p | Precipitation (mm) | | %P | Pressure | | %S | Sunrise | | %s | Sunset |
# Minimal
curl -s "wttr.in/Tokyo?format=%c+%t"
# ☀️ +15°C
# Detailed
curl -s "wttr.in/Tokyo?format=%l:+%C,+%t+(%f),+%h+humidity,+wind+%w"
# Tokyo: Sunny, +15°C (+13°C), 45% humidity, wind ↗12km/h
# JSON format
curl -s "wttr.in/Tokyo?format=j1" | jq '.current_condition[0].temp_C'
# City name
curl -s "wttr.in/Paris"
# City, Country
curl -s "wttr.in/Paris,France"
# Airport code
curl -s "wttr.in/JFK"
# Coordinates
curl -s "wttr.in/51.5,-0.1"
# IP-based (auto-detect)
curl -s "wttr.in"
# Landmark
curl -s "wttr.in/Eiffel+Tower"
?lang=XX for different languages (e.g., ?lang=de for German)?n to disable colors in narrow terminals?Q for quiet mode (no "Weather report" header)?format=j1 for full JSON datacurl -s "wttr.in/Moon"tools
Remote-control tmux sessions for interactive CLIs
development
Periodic self-assessment, goal tracking, and proactive improvement
testing
Be proactive - schedule follow-ups, reminders, and check-ins
tools
Interact with GitHub using the `gh` CLI