From claude-dev-kit
Combines careful mode (destructive command warnings) and freeze mode (edit boundary) for maximum safety. Use to prevent accidental file modifications and dangerous operations.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-dev-kit:guard [directory path to allow edits in][directory path to allow edits in]This skill is limited to the following tools:
Bashbash -c 'for D in "$CLAUDE_PLUGIN_ROOT/skills/careful" "$CLAUDE_SKILL_DIR/../careful" "${CLAUDE_PROJECT_DIR:-.}/.claude/skills/careful"; do [ -n "$D" ] && [ -f "$D/careful_guard.py" ] && exec python3 "$D/careful_guard.py"; done; true'Editbash -c 'for D in "$CLAUDE_PLUGIN_ROOT/skills/freeze" "$CLAUDE_SKILL_DIR/../freeze" "${CLAUDE_PROJECT_DIR:-.}/.claude/skills/freeze"; do [ -n "$D" ] && [ -f "$D/freeze_guard.py" ] && exec python3 "$D/freeze_guard.py"; done; true'Writebash -c 'for D in "$CLAUDE_PLUGIN_ROOT/skills/freeze" "$CLAUDE_SKILL_DIR/../freeze" "${CLAUDE_PROJECT_DIR:-.}/.claude/skills/freeze"; do [ -n "$D" ] && [ -f "$D/freeze_guard.py" ] && exec python3 "$D/freeze_guard.py"; done; true'The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Guard mode activated — combines `/careful` and `/freeze`.
Guard mode activated — combines /careful and /freeze.
$ARGUMENTS is a valid directory path. If not provided, ask the user..claude-kit/freeze-dir.txt:
mkdir -p .claude-kit && echo "<absolute-path>" > .claude-kit/freeze-dir.txt
<path>."rm -f .claude-kit/freeze-dir.txt
Or end this conversation.
npx claudepluginhub pillip/claude-dev-kit --plugin claude-dev-kitBlocks destructive Bash commands like rm -rf, DROP TABLE, git force-push, reset --hard, and restricts file edits to a specific directory. Use for protection on critical systems.
Prevents destructive operations on production systems and autonomous agents by intercepting dangerous commands, restricting edits to a directory, or combining both protections.
Activates full safety mode with destructive command warnings and directory-scoped edit restrictions. Protects production environments by blocking risky commands and limiting edits to a chosen directory.