Install
openclaw skills install agent-health-monitorMonitors agent health status and detects failures for fault-tolerant agent systems. **Trigger scenarios:** - User asks about agent health or status - User mentions "check agents", "agent failure", "health check" - System needs to detect unresponsive agents - Fault tolerance monitoring required
openclaw skills install agent-health-monitorMonitors agent and session health to detect failures and ensure system reliability.
const monitor = require('./skills/agent-health-monitor');
// Check all agents health
const health = await monitor.checkHealth();
// Get failed agents
const failed = await monitor.getFailedAgents();
// Monitor continuously
monitor.startMonitoring(30000); // Check every 30s
Returns a health report with: