What problem does it solve? When working on production systems or live debugging sessions, a single accidental destructive command (rm -rf, DROP TABLE, force-push) or an edit to the wrong file can cause serious damage. This Skill combines two safety layers so risky operations are caught before they execute. ## Core Features & Use Cases - Destructive Command Warnings: Checks bash commands for dangerous patterns like rm -rf, DROP TABLE, force-push, and git reset --hard, warning before execution with an option to override. - Directory-Scoped Edit Boundary: Blocks file edits and writes outside a user-specified directory, enforced via a freeze state file. - Use Case: While hotfixing a bug on a production checkout, activate guard mode scoped to the service directory so the agent cannot accidentally wipe data or modify unrelated parts of the repository. ## Quick Start Ask the agent to enable guard mode and restrict edits to your target directory, for example: turn on full safety mode and lock edits to the src/payments folder.