🦀 ClawHub
Weather Alert
by @indigas
Monitors weather for any location, sends alerts when rain, snow, temperature, wind, UV, or pressure thresholds are exceeded, plus daily briefings and trends.
💡 Examples
# Install the skill
npx clawhub install weather-alertCheck current weather
"Check weather in Prague"Set a rain alert for tomorrow
"Alert me if it will rain tomorrow in Prague"Set a temperature alert (below 5°C or above 30°C)
"Alert me if temperature drops below 5°C or exceeds 30°C"Get a 7-day briefing
"7-day weather briefing for Prague"List active alerts
"Show my weather alerts"
⚙️ Configuration
config.yaml defines default location and alert thresholds:
default_location:
name: "Prague"
lat: 50.0755
lon: 14.4378alerts:
rain_threshold: 60 # % probability
temp_min: 5 # °C below which to alert
temp_max: 30 # °C above which to alert
wind_max: 40 # km/h
snow_depth: 5 # cm
uv_max: 7
frost_threshold: 0 # °C
notification:
method: "exec-event" # How alerts are delivered
schedule_check: "6h" # Auto-check interval
TERMINAL
clawhub install weather-alert