What problem does it solve? When working on production systems or live environments, a single destructive command (rm -rf, DROP TABLE, force-push) or an edit to the wrong file can cause serious damage. Guard mode layers two protections so risky operations are caught before they execute. ## Core Features & Use Cases - Destructive Command Warnings: Intercepts dangerous Bash commands like rm -rf, DROP TABLE, and force-push, warning you before they run (with override option). - Directory-Scoped Edits: Blocks Edit and Write operations outside a directory you specify, enforced via PreToolUse hooks. - Combined Protection: Merges the /careful and /freeze skills into a single activation for maximum safety. - Use Case: You are debugging a live production server and only want changes inside /app/config. Activate guard mode, set the boundary to /app/config, and any edit outside that path is blocked while destructive shell commands trigger warnings. ## Quick Start Ask the AI to activate guard mode and restrict edits to your target directory, for example: turn on guard mode and lock edits to the src folder.