Eternal System Health
System health monitoring and reports
MIT-0 · Free to use, modify, and redistribute. No attribution required.
⭐ 0 · 12 · 0 current installs · 0 all-time installs
MIT-0
Security Scan
OpenClaw
Benign
high confidencePurpose & Capability
The SKILL.md and the included Python script both implement CPU, memory, disk, process, network, and uptime checks—consistent with the 'System health monitoring and reports' description. No unrelated binaries, env vars, or services are requested.
Instruction Scope
Runtime instructions only call the bundled Python script with explicit commands (check/report/monitor). The script reads local system interfaces (/proc, df, ps, ip) and prints or writes reports; this is within the expected scope for a health-monitoring tool.
Install Mechanism
There is no install spec; this is an instruction-only skill that ships a Python script. Nothing is downloaded or written to disk by an installer.
Credentials
The skill declares no required environment variables or credentials and the code does not read secrets from env vars. It only accesses local system files and runs standard system commands appropriate for diagnostics.
Persistence & Privilege
always is false and the skill does not request persistent platform privileges or modify other skill/system configurations. The monitor mode runs locally when invoked and may need normal OS permissions to read system state.
Assessment
This skill appears coherent with its purpose, but review before running: the script reads local system files (e.g., /proc), runs system commands (ps, df, ip) and may reveal process command lines and local network information—sensitive on shared machines. The monitor mode runs continuously when used; run it with appropriate privileges and in a trusted environment. If you plan to use output files, verify where reports are written. If you need extra assurance, inspect the remainder of the script (report-writing and monitor loop) locally or run it in a sandbox before deploying on production systems.Like a lobster shell, security has layers — review code before you run it.
Current versionv1.0.0
Download ziplatest
License
MIT-0
Free to use, modify, and redistribute. No attribution required.
SKILL.md
system-health
Monitor system health: CPU, memory, disk, processes, and network. Generate health reports.
Usage
# 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
Commands
check— Run a quick health checkreport— Generate a detailed system reportmonitor— Continuous monitoring with periodic checks
Options
--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)
Files
2 totalSelect a file
Select a file to preview.
Comments
Loading comments…
