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 accidental edit outside the intended directory can cause serious damage. Guard mode activates two layers of protection at once 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 execution with the option to override. - Directory-Scoped Edit Lock: Blocks Edit and Write operations on any file outside a directory you specify, enforced via PreToolUse hooks. - Combined Activation: Merges the /careful and /freeze skills into a single command for full safety coverage. - Use Case: You are hotfixing a bug in a live repository. Activate guard mode, restrict edits to the src/ directory, and any attempt to modify config files elsewhere or run a destructive cleanup command will be flagged or blocked. ## Quick Start Ask the AI to activate guard mode and restrict edits to your working directory, for example: turn on guard mode and lock edits to the src folder.