Install
openclaw skills install monitor-alert-automatonSystem health monitoring and alerting for Automaton. Checks cron execution, heartbeat rhythm, disk space, API limits, and memory health. Auto-alerts on anomalies.
openclaw skills install monitor-alert-automatonSystem health monitoring and automated alerting for Automaton.
# Manual health check
node skills/monitor-alert/health-monitor.js
# Check specific component
node skills/monitor-alert/health-monitor.js --cron
node skills/monitor-alert/health-monitor.js --heartbeat
node skills/monitor-alert/health-monitor.js --disk
node skills/monitor-alert/health-monitor.js --token
node skills/monitor-alert/health-monitor.js --memory
| Severity | Channel | Response Time |
|---|---|---|
| Low | Log only | Next review |
| Medium | Daily summary | <24h |
| High | Immediate message | <1h |
| Critical | Immediate + loud alert | <5min |
Edit skills/monitor-alert/config.json:
{
"thresholds": {
"disk": {
"warn": 80,
"critical": 95
},
"token": {
"warn": 70,
"critical": 90
},
"heartbeat": {
"maxGap": 40
},
"cron": {
"maxFailures": 2
}
},
"alerts": {
"channel": "webchat",
"quietHours": {
"start": "23:00",
"end": "07:00"
}
}
}
monitor-alert/
├── SKILL.md # This file
├── health-monitor.js # Main monitoring script
├── config.json # Configuration
├── alert-history.md # Alert log
└── tests/
└── health-check.js # Integration tests
Author: Automaton
License: MIT
Last updated: 2026-03-20