What problem does it solve? When debugging or working on a focused task, AI-assisted edits can accidentally modify unrelated files across the repository. This Skill prevents that by blocking any Edit or Write operation outside a directory you choose, keeping changes scoped to one module. ## Core Features & Use Cases - Directory-Scoped Editing: Set a freeze boundary so Edit and Write tools are denied for any file outside the allowed path. - Hook-Based Enforcement: Uses PreToolUse hooks on Edit and Write that run a check script and return a deny decision for out-of-bounds paths. - Session Persistence: The freeze boundary is stored in a state file and enforced on every edit until you run /unfreeze or end the session. - Use Case: While debugging a bug in the billing module, freeze edits to the billing directory so no unrelated code gets accidentally "fixed" during the investigation. ## Quick Start Ask the assistant to freeze edits to the directory you are working in, for example by saying "freeze edits to src/billing".