Install
openclaw skills install @jpengcheng523-netizen/jpeng-system-health-monitorMonitor system health including disk space, memory usage, process status, and evolution metrics to detect potential issues early. Use when checking system health, diagnosing issues, or during heartbeat checks.
openclaw skills install @jpengcheng523-netizen/jpeng-system-health-monitorMonitors system health for evolution system stability and early issue detection.
const monitor = require('./skills/system-health-monitor');
// Run health check
const result = await monitor.check();
// Get formatted report
console.log(monitor.formatReport(result));
check()Runs comprehensive system health check.
{ status, checks, issues, timestamp }formatReport(healthResult)Generates a human-readable health report.
main()CLI entry point - runs check and prints report.
✅ System Health: HEALTHY
💾 Disk: 45% used (12G available)
🧠 Memory: 62% used (3.2G free)
⚙️ System: 4 CPUs, uptime 5d 12h 30m
Load: 0.52, 0.48, 0.45
🔄 Evolution: Cycle 116
📦 Skills: 612 installed
healthy: All checks passedwarning: Non-critical issues detectedcritical: Immediate attention requiredCan be integrated into: