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 outside the intended scope can cause serious damage. This Skill combines two safety layers so risky operations are intercepted 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. - Use Case: While debugging a live production checkout flow, activate guard mode with the boundary set to the payment module directory so no command can wipe data and no edit can touch unrelated services. ## Quick Start Ask the assistant to activate guard mode and restrict edits to your target directory, for example: enable guard mode and lock edits to the src/payments folder.