Install
openclaw skills install eternal-system-healthSystem health monitoring and reports
openclaw skills install eternal-system-healthMonitor system health: CPU, memory, disk, processes, and network. Generate health reports.
# Quick health check
python3 scripts/syshealth.py check
# Generate a full report
python3 scripts/syshealth.py report
# Continuous monitoring
python3 scripts/syshealth.py monitor --interval 60
# Specific checks
python3 scripts/syshealth.py check --category disk
check — Run a quick health checkreport — Generate a detailed system reportmonitor — Continuous monitoring with periodic checks--category — Check specific category: cpu, memory, disk, network, processes--interval — Monitoring interval in seconds (default: 60)--output, -o — Write report to file--threshold — Alert threshold percentage for disk/memory (default: 80)