Rules of the Claw

ReviewAudited by ClawScan on May 10, 2026.

Overview

Prompt-injection indicators were detected in the submitted artifacts (ignore-previous-instructions); human review is required before treating this skill as clean.

This skill looks benign and purpose-aligned for installing Guardian safety rules. Before installing, review the shell script and rules JSON, confirm the source because registry provenance is limited, understand that it replaces Guardian's persistent rules file, and keep the backup so you can restore prior behavior if needed. ClawScan detected prompt-injection indicators (ignore-previous-instructions), so this skill requires review even though the model response was benign.

Findings (3)

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

Users need to verify the included installer and rules file themselves before trusting it to modify Guardian behavior.

Why it was flagged

The registry metadata has limited provenance and no install spec even though a shell installer is included and documented.

Skill content
Source: unknown; Homepage: none; Install specifications: No install spec — this is an instruction-only skill; Code file presence: install.sh
Recommendation

Confirm the intended repository/source, inspect install.sh and the rules JSON, and verify local requirements before running the installer.

What this means

Running the script can modify files in the user's OpenClaw configuration.

Why it was flagged

The skill asks the user to execute a local shell script. The provided script is purpose-aligned, but it runs with the user's local permissions.

Skill content
# Step 3: Run the install script
cd ~/.openclaw/workspace/skills/rules-of-the-claw
bash install.sh
Recommendation

Run the installer only after reviewing it, and execute it manually rather than letting an agent run it without confirmation.

What this means

Future OpenClaw/Guardian sessions may block commands according to this ruleset until the file is edited or restored from backup.

Why it was flagged

The installer replaces Guardian's rules file, creating persistent enforcement rules that affect future agent tool use.

Skill content
GUARDIAN_DIR="${HOME}/.openclaw/extensions/guardian"
RULES_FILE="${GUARDIAN_DIR}/guardian-rules.json"
...
cp "${SOURCE_RULES}" "${RULES_FILE}"
Recommendation

Review the installed rules, customize placeholders such as YOUR_APP/YOUR_ORG, and keep the generated backup if you may need to roll back.