What problem does it solve? When debugging or working on one module, it is easy to accidentally modify unrelated files. This Skill enforces a hard boundary so Edit and Write operations outside a chosen directory are blocked, preventing unintended changes during focused work. ## Core Features & Use Cases - Directory-Scoped Editing: Set a freeze boundary so only files inside the chosen path can be edited or written. - PreToolUse Hook Enforcement: A Bash hook inspects every Edit/Write call and denies operations targeting paths outside the boundary. - Session-Persistent State: The freeze directory is stored in a state file and applies until changed or the session ends. - Use Case: While debugging a bug in the src/auth module, freeze edits to that directory so no unrelated code gets accidentally "fixed" during the investigation. ## Quick Start Ask the assistant to freeze edits to a specific directory, for example: restrict all edits to the src/auth folder for this session.