What problem does it solve? When debugging or making scoped changes, it is easy to accidentally modify unrelated files outside the intended module. This Skill enforces a session-scoped edit boundary so that any Edit or Write operation targeting files outside the allowed directory is blocked, preventing accidental cross-module changes. ## Core Features & Use Cases - Directory-Scoped Edit Blocking: Uses PreToolUse hooks on Edit and Write tools to deny any file modification outside the configured freeze directory. - Session-Persistent Boundary: Stores the freeze path in a state file so the restriction applies consistently for the entire session. - Prefix-Safe Matching: Appends a trailing slash to the boundary path so /src does not accidentally match /src-old. - Use Case: While fixing a bug in the app/src/main module of an Android project, freeze edits to that directory so the AI cannot inadvertently touch build scripts, docs, or other modules during the debugging session. ## Quick Start Ask the assistant to freeze edits to the directory you are working in, for example by saying: restrict all edits to the app/src folder for this session.