Install
openclaw skills install notifyConfigure notification channels and conditional alerts. Track what's being watched, log what's been sent.
openclaw skills install notifyUse when sending notifications to users from an AI agent. Covers channel selection, timing, formatting, and avoiding notification fatigue.
| Type | Channel | Timing | Group |
|---|---|---|---|
| System down, security alert | Push + primary chat | Immediate, 24/7 | Never |
| Deadline <2h, needs action | Primary chat | Immediate | By project |
| Task completed | Primary chat | Batch 5-15min | Yes |
| Daily/weekly summary | Email or chat | Scheduled | Everything |
| Debug, internal status | Log only | Never notify | N/A |
BAD: "Task completed ✅"
GOOD: "✅ Deploy v2.3.1 done. Preview: dev.app.com"
BAD: "Error occurred"
GOOD: "❌ Build failed: missing env var STRIPE_KEY in production"
BAD: Critical alert via email (seen 4 hours later)
GOOD: Critical alert via push + SMS
BAD: Weekly summary via SMS at 11pm
GOOD: Weekly summary via email Monday 9am
If 3+ notifications within 5 minutes for same project:
→ Combine into single message with summary
If notification is informational (level 1-2):
→ Queue for next digest (morning or evening)
When scheduling any notification, confirm:
✅ Scheduled: "Weekly metrics report"
📅 Every Monday 09:00 (Europe/Madrid)
📬 Via: Email
🔕 Respects quiet hours: Yes
If user doesn't respond to critical alert:
Before sending first notification, know:
| Pattern | Problem | Fix |
|---|---|---|
| "Notification sent" after every action | Trust erosion | Only notify on completion or error |
| Same message to 3 channels | Redundant noise | Pick ONE appropriate channel |
| JSON dumps in chat | Unreadable | Format or link to full log |
| "Reminder: X" daily until done | Harassment | Max 3 reminders, then ask if still relevant |
| Notify on no-change | Pointless | Only notify if there IS something to report |