System Resource Monitor

PassAudited by ClawScan on May 1, 2026.

Overview

This skill runs a small local script to display basic system resource information and its behavior matches its stated purpose.

This appears safe for its stated purpose. Before installing, check that you are comfortable with the agent running the included local shell script to read system uptime, load, memory, swap, and root disk usage.

Findings (2)

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.

What this means

The agent may run a local monitoring script to read and display basic resource usage from the machine.

Why it was flagged

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.

Skill content
The skill executes the local `./scripts/monitor.sh` script.
Recommendation

Install only if you are comfortable with the agent running this local script; the provided script should remain limited to resource-reporting commands.

What this means

The skill may fail or behave differently on systems that lack these utilities or use incompatible command output formats.

Why it was flagged

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.

Skill content
UPTIME=$(uptime -p) ... MEM=$(free -h | awk '/^Mem:/ {print $3 " / " $2}') ... DISK=$(df -h / | awk 'NR==2 {print $3 " / " $2 " (" $5 ")"}')
Recommendation

Confirm the target system has bash, uptime, free, awk, sed, and df available before relying on the skill.