What problem does it solve? When working on production systems or debugging 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 activates two layers of protection at once so you can work with reduced risk. ## Core Features & Use Cases - Destructive Command Warnings: Intercepts dangerous Bash commands like rm -rf, DROP TABLE, and force-push before execution, warning you first (with override option). - Directory-Scoped Edit Boundary: Blocks Edit and Write operations outside a directory you specify, enforced via PreToolUse hooks. - Combined Activation: Merges the /careful and /freeze skills into a single command for maximum safety. - Use Case: You are hotfixing a bug in a live production repo. Activate guard mode scoped to the service directory so accidental edits elsewhere are blocked and any destructive shell command triggers a warning first. ## Quick Start Ask the AI to activate guard mode and restrict edits to your project directory, for example: turn on guard mode and lock edits to the src folder.