Install
openclaw skills install shulian-weatherGet current weather and forecasts via WeatherAPI.com. Use when: user asks about weather, temperature, or forecasts for any location. IMPORTANT: You must conf...
openclaw skills install shulian-weatherGet current weather conditions and forecasts using WeatherAPI.com.
This skill will NOT work until you configure your own API key.
Free tier: 1,000,000 calls/month
Edit ~/.openclaw/openclaw.json:
{
"skills": {
"entries": {
"shulian-weather": {
"enabled": true,
"apiKey": "YOUR-API-KEY-HERE"
}
}
}
}
Add to ~/.zshrc:
export WEATHER_API_KEY="YOUR-API-KEY-HERE"
Then restart Gateway.
After configuring your API key, you can ask:
API_KEY="${WEATHER_API_KEY}"
curl -s "https://api.weatherapi.com/v1/current.json?key=${API_KEY}&q=London"
API_KEY="${WEATHER_API_KEY}"
curl -s "https://api.weatherapi.com/v1/forecast.json?key=${API_KEY}&q=London&days=7"
API_KEY="${WEATHER_API_KEY}"
curl -s "https://api.weatherapi.com/v1/search.json?key=${API_KEY}&q=London"
tail -f ~/.openclaw/logs/gateway.logcat ~/.openclaw/openclaw.json | jq '.skills.entries."shulian-weather"'