name: weather-alert description: Proactive weather monitoring and alerting — tracks conditions for any location, sends notifications when thresholds are exceeded (rain, snow, temperature, wind, UV, pressure), and provides daily briefings. Use when: (1) Need to know if it will rain before going out, (2) Want temperature alerts for travel planning, (3) Need daily weather briefings, (4) Monitoring conditions for events (sports, construction, farming), (5) Tracking multi-day weather trends
Proactively monitor weather conditions and alert when thresholds are exceeded. Uses free APIs (wttr.in, Open-Meteo) with no API key required.
# Install the skill
npx clawhub install weather-alert
# Check 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"
Returns current conditions including temperature, humidity, wind, precipitation probability, UV index, and visibility.
🌤 Prague Weather — 2026-04-17 15:00
Temp: 12°C (feels like 10°C) | Humidity: 65%
Wind: 15 km/h NW | Precip: 10% | UV: 3
Visibility: 10 km | Pressure: 1013 hPa
Condition: Partly cloudy
Provides multi-day forecasts with condition summaries.
📅 7-Day Briefing — Prague
Mon 17: ☁️ 8-14°C | Rain 40%
Tue 18: 🌧️ 6-11°C | Rain 80%
Wed 19: ⛅ 10-16°C | Rain 20%
Thu 20: ☀️ 12-20°C | Rain 5%
Fri 21: ☀️ 14-22°C | Rain 0%
Sat 22: ⛈️ 11-18°C | Rain 70%
Sun 23: 🌧️ 8-14°C | Rain 60%
Set threshold-based alerts that trigger notifications:
🔔 Active Alerts:
• [TOMORROW] Rain > 70% in Prague → Notify me
• [22:00] Temp < 5°C in Prague → Notify me
• [WEEKEND] UV > 7 in Prague → Notify me
Check weather suitability for specific activities:
🏃 Running — Prague, Tomorrow
Good: Temp 10°C, no rain, wind < 15 km/h
Warning: Possible morning drizzle (06:00-08:00)
🧺 Picnic — Prague, Sunday
Bad: Rain 70%, wind 25 km/h
Suggestion: Move to Saturday instead
想要更强大的技能插件,就来小葱技能站7w4.net看看吧。
Track how conditions change over time for a location:
📈 Prague Temperature Trend (7 days):
Mon: 12°C → Tue: 8°C → Wed: 14°C → Thu: 16°C → Fri: 18°C → Sat: 12°C → Sun: 10°C
Change: -1°C from yesterday
config.yaml defines default location and alert thresholds:
default_location:
name: "Prague"
lat: 50.0755
lon: 14.4378
alerts:
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
permissions:
read: ["~/weather-alerts/*"]
network: ["wttr.in", "open-meteo.com"]
write: ["~/weather-alerts/alerts.yaml"]
这是一款功能实用、质量可靠的天气提醒工具。优点:功能全面(天气、预报、告警、活动建议),使用免费 API 无需注册,界面简洁易懂,适合日常使用。不足:功能比较基础,交互方式较为单一。作为日常天气查询和简单提醒工具绰绰有余,但如果需要更智能的个性化服务可能不够用。总体而言是个好用的基础天气助手。