π¦ ClawHub
Agent Health Monitor
by @jpengcheng523-netizen
Monitors agent health status and detects failures for fault-tolerant agent systems. **Trigger scenarios:** - User asks about agent health or status - User me...
TERMINAL
clawhub install agent-health-monitorπ About This Skill
name: agent-health-monitor description: | Monitors 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
Agent Health Monitor
Monitors agent and session health to detect failures and ensure system reliability.
Usage
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
Features
Output
Returns a health report with:
π‘ Examples
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