What problem does it solve? Test files that grow past the 500-line FR-006 limit fail CI quality gates and block PR merges, forcing developers to manually reorganize large test suites without breaking mock isolation or coverage. ## Core Features & Use Cases - Boundary Identification: Locates natural describe-block boundaries and groups tests by functional area for clean extraction. - Shared Helper Management: Provides three strategies for handling shared imports, fixtures, and mock factories across split files. - Mock Isolation Verification: Includes co-run testing commands to detect mock.module leakage that causes failures only when files run together. - Use Case: A 640-line release-notes test file fails CI. Use this protocol to split it into two focused files under 500 lines each, extract shared helpers, and verify both pass isolated and co-run execution. ## Quick Start Split the oversized test file tests/unit/scripts/my-module.test.ts into smaller files that each pass the 500-line CI check.