safety-guard — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited safety-guard (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Pairs with: autonomous-loops, agentic-engineering, deployment-patterns
Intercepts destructive commands before execution and warns, then asks for confirmation:
Watched patterns:
rm -rf (especially /, ~, or project root)
git push --force
git reset --hard
git checkout . (discard all changes)
DROP TABLE / DROP DATABASE
docker system prune
kubectl delete
chmod 777
sudo rm
npm publish (accidental publishes)
Any command with --no-verifyOn detection: explains what the command does → suggests safer alternative → requires explicit confirmation.
Locks all file writes to a specific directory tree:
activate: safety-guard freeze src/components/Any Write/Edit outside src/components/ is blocked with an explanation. Use when you want an agent focused on one area without touching unrelated code.
Maximum safety for autonomous agents — reads anywhere, writes only to allowed directory, destructive commands blocked everywhere:
activate: safety-guard guard --dir src/api/ --allow-read-allsafety-guard offUses PreToolUse hooks to intercept Bash, Write, Edit, and MultiEdit tool calls. Checks command/path against active rules before allowing execution.
Hook entry (hooks.json):
{
"matcher": "Bash|Write|Edit",
"hooks": [{
"type": "command",
"command": "node hooks/scripts/safety-guard.js"
}]
}| Scenario | Recommended Mode |
|---|---|
| Reading and writing freely, just avoid disasters | Careful |
| Agent refactoring one module only | Freeze |
| Fully autonomous session on prod | Guard |
| Normal interactive session | Off |
All blocked actions are logged to ~/.claude/safety-guard.log for audit trail.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.