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. This Skill enforces two layers of protection so risky operations are caught before they execute. ## Core Features & Use Cases - Destructive Command Warnings: PreToolUse hooks scan every Bash command for dangerous patterns like rm -rf, DROP TABLE, force-push, and git reset --hard, warning before execution. - Directory-Scoped Edit Boundary: Edit and Write operations are blocked outside a user-specified directory, enforced via a freeze state file. - Combined Safety Mode: Merges the /careful and /freeze skills into one activation for maximum protection. - Use Case: While hotfixing a production repository, activate guard mode with the boundary set to the service directory so accidental edits to infrastructure configs are blocked and any destructive shell command triggers a confirmation warning. ## 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.