repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | --- |
| #2 | name: weather |
| #3 | description: Get current weather and forecasts (no API key required). |
| #4 | homepage: https://wttr.in/:help |
| #5 | metadata: {"clawdbot":{"emoji":"🌤️","requires":{"bins":["curl"]}}} |
| #6 | --- |
| #7 | |
| #8 | # Weather |
| #9 | |
| #10 | Two free services, no API keys needed. |
| #11 | |
| #12 | ## wttr.in (primary) |
| #13 | |
| #14 | Quick one-liner: |
| #15 | ```bash |
| #16 | curl -s "wttr.in/London?format=3" |
| #17 | # Output: London: ⛅️ +8°C |
| #18 | ``` |
| #19 | |
| #20 | Compact format: |
| #21 | ```bash |
| #22 | curl -s "wttr.in/London?format=%l:+%c+%t+%h+%w" |
| #23 | # Output: London: ⛅️ +8°C 71% ↙5km/h |
| #24 | ``` |
| #25 | |
| #26 | Full forecast: |
| #27 | ```bash |
| #28 | curl -s "wttr.in/London?T" |
| #29 | ``` |
| #30 | |
| #31 | Format codes: `%c` condition · `%t` temp · `%h` humidity · `%w` wind · `%l` location · `%m` moon |
| #32 | |
| #33 | Tips: |
| #34 | - URL-encode spaces: `wttr.in/New+York` |
| #35 | - Airport codes: `wttr.in/JFK` |
| #36 | - Units: `?m` (metric) `?u` (USCS) |
| #37 | - Today only: `?1` · Current only: `?0` |
| #38 | - PNG: `curl -s "wttr.in/Berlin.png" -o /tmp/weather.png` |
| #39 | |
| #40 | ## Open-Meteo (fallback, JSON) |
| #41 | |
| #42 | Free, no key, good for programmatic use: |
| #43 | ```bash |
| #44 | curl -s "https://api.open-meteo.com/v1/forecast?latitude=51.5&longitude=-0.12¤t_weather=true" |
| #45 | ``` |
| #46 | |
| #47 | Find coordinates for a city, then query. Returns JSON with temp, windspeed, weathercode. |
| #48 | |
| #49 | Docs: https://open-meteo.com/en/docs |
| #50 |