Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Started$pwd:
$ git log --oneline --stat
stars:2
forks:0
updated:February 11, 2026 at 10:44
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | weather |
| description | Get current weather and forecasts (no API key required). |
| homepage | https://open-meteo.com/en/docs |
| metadata | {"crocbot":{"emoji":"๐ค๏ธ","requires":{"bins":["curl"]}}} |
Two free services, no API keys needed. Open-Meteo is primary; wttr.in is fallback.
Free, no API key, returns JSON.
curl -s "https://geocoding-api.open-meteo.com/v1/search?name=London&count=1"
Response gives results[0].latitude and results[0].longitude.
curl -s "https://api.open-meteo.com/v1/forecast?latitude=51.5074&longitude=-0.1278¤t=temperature_2m,relative_humidity_2m,apparent_temperature,weather_code,wind_speed_10m,wind_direction_10m&temperature_unit=celsius&wind_speed_unit=kmh"
Parse current object for temperature, humidity, feels-like, wind, and weather code.
Append daily fields and forecast horizon:
curl -s "https://api.open-meteo.com/v1/forecast?latitude=51.5074&longitude=-0.1278¤t=temperature_2m,relative_humidity_2m,apparent_temperature,weather_code,wind_speed_10m,wind_direction_10m&daily=weather_code,temperature_2m_max,temperature_2m_min,precipitation_probability_max&forecast_days=3&temperature_unit=celsius&wind_speed_unit=kmh"
daily arrays are indexed by daily.time[].
| Code | Condition |
|---|---|
| 0 | Clear sky |
| 1, 2, 3 | Mainly clear, Partly cloudy, Overcast |
| 45, 48 | Fog, Depositing rime fog |
| 51, 53, 55 | Drizzle: light, moderate, dense |
| 56, 58 | Freezing drizzle: light, dense |
| 61, 63, 65 | Rain: slight, moderate, heavy |
| 66, 67 | Freezing rain: light, heavy |
| 71, 73, 75 | Snowfall: slight, moderate, heavy |
| 77 | Snow grains |
| 80, 81, 82 | Rain showers: slight, moderate, violent |
| 85, 86 | Snow showers: slight, heavy |
| 95 | Thunderstorm |
| 96, 99 | Thunderstorm with hail: slight, heavy |
temperature_unit: celsius (default) or fahrenheitwind_speed_unit: kmh (default), mph, ms, knUse only if Open-Meteo is unreachable.
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.png