What problem does it solve?
Prevents accidental or scope-breaking edits by restricting file modifications to a user-specified directory during a session, helping developers debug and scope changes to a single module.
Core Features & Use Cases
- Enforces a dynamic edit boundary per session so edits outside the target folder are blocked for the duration of the session.
- Blocks Edit and Write operations targeting files outside the allowed path, reducing risk of collateral changes during debugging.
- Useful when debugging or refactoring a single module, or when you want to lock down edits while collaborating across a codebase.
Quick Start
Ask the user which directory to freeze edits to, resolve it to an absolute path, and save the boundary for the current session to block edits outside that path.