Agent Safety Monitor

AdvisoryAudited by Static analysis on May 12, 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.

What this means

A user could rely on this as a safety guardrail and believe unsafe agents will be stopped when the provided code does not appear to do that.

Why it was flagged

The documentation presents active real-time enforcement and kill/pause capabilities, but the supplied monitor.py only reads a JSON event file, creates alerts, and stores paused agent IDs in memory; it does not actually stop agents or enforce file/API/network access.

Skill content
"Real-time AI agent safety monitoring... constraint enforcement" ... "Auto-Pause/Kill" ... "Scope limits: Restrict file/API/network access"
Recommendation

Treat it as a prototype log analyzer unless enforcement code is added and reviewed; do not rely on it as the sole guardrail for autonomous agents.

What this means

The advertised dashboard may fail or require unreviewed code from elsewhere if a user tries to supply the missing file.

Why it was flagged

The SKILL instructs launching a dashboard script, but the manifest only includes SKILL.md, references/rules-reference.md, and scripts/monitor.py; the referenced dashboard file is missing.

Skill content
python3 scripts/dashboard.py --port 8080
Recommendation

Install only the reviewed files, and require the publisher to include and declare any dashboard implementation before running it.

What this means

Running the script executes local code and parses user-provided log/config files, which is normal for this purpose but still worth reviewing.

Why it was flagged

The skill asks the user to run a local Python script. This is expected for a log-monitoring tool and no privileged shell, network, or destructive commands are shown.

Skill content
python3 scripts/monitor.py --config safety_rules.yaml --input agent_logs/
Recommendation

Run it in a normal project environment with trusted input files; do not run additional scripts that are not included in the reviewed artifact set.

What this means

Users may be confused about whether credentials or a wallet are needed, and should not provide them without a clear, reviewed reason.

Why it was flagged

The registry-level capability signals mention wallet and sensitive credentials, while the requirements declare no credentials and the supplied code does not use any.

Skill content
requires-wallet; requires-sensitive-credentials
Recommendation

Do not give this skill wallet access, API keys, or other sensitive credentials unless updated artifacts explicitly justify and scope that access.