Install
openclaw skills install system-vigilMonitor host system health (Disk, RAM, CPU). Returns structured JSON status for predictive maintenance.
openclaw skills install system-vigilA health monitor for the host machine. It checks vital signs and returns a structured report, allowing agents to detect resource exhaustion before it causes a crash.
warning, critical) based on thresholds.User: "Run a system health check."
Agent: python3 skills/system-vigil/check.py
Output:
{
"status": "ok",
"disk": { "used_percent": 45, "free_gb": 120 },
"memory": { "used_percent": 30, "free_gb": 12 },
"cpu": { "load_15m": 0.5 }
}
A Python script parsing standard Linux utils (df, free, uptime).