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 risky operations are caught before they execute. ## Core Features & Use Cases - Destructive Command Warnings: Intercepts Bash commands matching dangerous patterns (rm -rf, DROP TABLE, force-push) and warns before execution, with the option to override. - Directory-Scoped Edit Boundary: Blocks Edit and Write operations outside a user-specified directory, enforced via PreToolUse hooks. - Combined Activation: Merges the /careful and /freeze skills into a single command for maximum safety in one step. - Use Case: You are hotfixing a bug in a live repository and only want changes inside the app/api/ folder. Activate guard mode, set the boundary to app/api/, and any accidental edit elsewhere is blocked while dangerous shell commands trigger a warning. ## Quick Start Ask the AI to activate guard mode and restrict edits to a specific directory such as src/.