System Resource Monitor
AdvisoryAudited by Static analysis on Apr 30, 2026.
Overview
No suspicious patterns detected.
Findings (0)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
The agent may run a local monitoring script to read and display basic resource usage from the machine.
The skill invokes a local shell script, which is a code-execution capability, but this is clearly disclosed and directly necessary for a system resource monitor.
The skill executes the local `./scripts/monitor.sh` script.
Install only if you are comfortable with the agent running this local script; the provided script should remain limited to resource-reporting commands.
The skill may fail or behave differently on systems that lack these utilities or use incompatible command output formats.
The script relies on common system utilities, but the metadata declares no required binaries; this is a packaging completeness note rather than evidence of unsafe behavior.
UPTIME=$(uptime -p) ... MEM=$(free -h | awk '/^Mem:/ {print $3 " / " $2}') ... DISK=$(df -h / | awk 'NR==2 {print $3 " / " $2 " (" $5 ")"}')Confirm the target system has bash, uptime, free, awk, sed, and df available before relying on the skill.
