원클릭으로
weather
Use when checking current weather or forecasts for venues, cities, and outdoor-game context without requiring an API key.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when checking current weather or forecasts for venues, cities, and outdoor-game context without requiring an API key.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when making data-driven official sports picks for MLB, NFL, NBA, NHL, or soccer/World Cup; deciding pick vs pass; maintaining a portable picks ledger; or reviewing settled picks.
Use when searching Kalshi sports prediction markets, reading event contracts or OHLC/candlestick data, or comparing CFTC-regulated prediction-market prices.
Use when retrieving MLB scores, schedules, standings, rosters, game summaries, play-by-play, win probability, injuries, transactions, depth charts, team/player stats, leaders, or news from public ESPN endpoints.
Use when retrieving NBA scores, schedules, standings, rosters, game summaries, play-by-play, win probability, injuries, transactions, depth charts, team/player stats, leaders, futures, or news from public ESPN endpoints.
Use when retrieving NFL scores, schedules, standings, rosters, game summaries, play-by-play, win probability, injuries, transactions, depth charts, team/player stats, leaders, or news from public ESPN endpoints.
Use when retrieving NHL scores, schedules, standings, rosters, game summaries, play-by-play, injuries, transactions, team/player stats, leaders, futures, or news from public ESPN endpoints.
| name | weather |
| description | Use when checking current weather or forecasts for venues, cities, and outdoor-game context without requiring an API key. |
| version | 1.0.0 |
| author | Hermes Agent |
| license | MIT |
| metadata | {"hermes":{"tags":["sports","weather"],"related_skills":[]},"source":{"legacy_metadata":"clawhub"}} |
Two free services, no API keys needed.
Quick one-liner:
curl -s "wttr.in/London?format=3"
# Output: London: ⛅️ +8°C
Compact format:
curl -s "wttr.in/London?format=%l:+%c+%t+%h+%w"
# Output: London: ⛅️ +8°C 71% ↙5km/h
Full forecast:
curl -s "wttr.in/London?T"
Format codes: %c condition · %t temp · %h humidity · %w wind · %l location · %m moon
Tips:
wttr.in/New+Yorkwttr.in/JFK?m (metric) ?u (USCS)?1 · Current only: ?0curl -s "wttr.in/Berlin.png" -o /tmp/weather.pngFree, no key, good for programmatic use:
curl -s "https://api.open-meteo.com/v1/forecast?latitude=51.5&longitude=-0.12¤t_weather=true"
Find coordinates for a city, then query. Returns JSON with temp, windspeed, weathercode.