Openclawgotchi Weather
Get current weather and forecasts using wttr.in (no API key needed)
install
source · Clone the upstream repo
git clone https://github.com/turmyshevd/openclawgotchi
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/turmyshevd/openclawgotchi "$T" && mkdir -p ~/.claude/skills && cp -r "$T/gotchi-skills/weather" ~/.claude/skills/turmyshevd-openclawgotchi-weather && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/turmyshevd/openclawgotchi "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/gotchi-skills/weather" ~/.openclaw/skills/turmyshevd-openclawgotchi-weather && rm -rf "$T"
manifest:
gotchi-skills/weather/SKILL.mdsource content
Weather Skill
Get weather info using wttr.in — free, no API key needed, works perfectly on Pi Zero!
Quick Commands
One-liner (for E-Ink display)
curl -s "wttr.in/Moscow?format=3" # Output: Moscow: ⛅️ +8°C
Compact format (temp + humidity + wind)
curl -s "wttr.in/London?format=%l:+%c+%t+%h+%w" # Output: London: ⛅️ +8°C 71% ↙5km/h
Current conditions only
curl -s "wttr.in/Berlin?0T"
Full 3-day forecast
curl -s "wttr.in/Tokyo?T"
Format Codes
| Code | Meaning |
|---|---|
| Weather condition (emoji) |
| Temperature |
| Humidity |
| Wind |
| Location |
| Moon phase |
| Precipitation |
Tips
- URL-encode spaces:
orwttr.in/New+Yorkwttr.in/New%20York - Airport codes work:
,wttr.in/JFKwttr.in/SVO - Force metric:
(Celsius, km/h)?m - Force imperial:
(Fahrenheit, mph)?u - Today only:
?1 - Current only:
?0 - No colors:
(better for parsing)?T
Integration with E-Ink
Perfect for heartbeat or status display:
import subprocess def get_weather(city="Moscow"): result = subprocess.run( f'curl -s "wttr.in/{city}?format=%c+%t"', shell=True, capture_output=True, text=True ) return result.stdout.strip() # Use in heartbeat: weather = get_weather() show_face("happy", f"SAY:{weather}")
Example Responses
# Quick curl -s "wttr.in/Moscow?format=3" → Moscow: ☀️ -5°C # Detailed curl -s "wttr.in/Moscow?format=%l:+%c+%t+(%h+humidity,+%w+wind)" → Moscow: ☀️ -5°C (45% humidity, ↑10km/h wind)
Fallback: Open-Meteo API
If wttr.in is down, use Open-Meteo (JSON, no key):
# Get coordinates first (Moscow: 55.75, 37.62) curl -s "https://api.open-meteo.com/v1/forecast?latitude=55.75&longitude=37.62¤t_weather=true"
Returns JSON with
temperature, windspeed, weathercode.