weather
v1.0.0Get current weather and forecasts (no API key required). Uses Open-Meteo.
How to install
Point your Sulala Agent at this store, then install this skill.
- Set the registry URL (e.g. in
.env):
SKILLS_REGISTRY_URL=https://hub.sulala.ai/api/sulalahub/registryThen run: sulala skill install weather or install from the dashboard Skills page.
Skill doc
---
name: weather
description: Get current weather and forecasts (no API key required).
homepage: https://open-meteo.com/en/docs
metadata:
{
"sulala": {
"emoji": "🌤️",
"requires": { "bins": ["curl"] }
}
}
---
# Weather
Use **run_command** with `curl` to fetch weather from Open-Meteo (free, no API key). Add `curl` to ALLOWED_BINARIES.
## Open-Meteo
Geocoding (city → lat, lon):
```bash
curl -s "https://geocoding-api.open-meteo.com/v1/search?name=London&count=1"
```
Current weather (use lat, lon from geocoding):
```bash
curl -s "https://api.open-meteo.com/v1/forecast?latitude=51.5&longitude=-0.12¤t_weather=true"
```
Returns JSON with temp, windspeed, weathercode, etc.
Docs: https://open-meteo.com/en/docs