Refactor without touching architecture
Improve a targeted area via dependency mapping, atomic refactors, and regression checks — no changes to architecture or public contracts.
Use this when
Use this for a focused readability, typing, maintainability, or performance refactor whose intended behavior and public contracts should remain unchanged.
How it runs
- Define the target, measurable goal, current behavior, public contracts, and applicable baseline checks.
- Map internal call sites, upstream dependencies, and downstream consumers using the repository evidence available.
- Select or add representative tests for boundaries, type constraints, and failure modes without forcing arbitrary coverage work.
- Apply one atomic refactor and rerun the baseline, static checks, and affected-consumer checks.
- Keep only verified improvements and repeat for no more than five rounds before entering a terminal state.
Done when
✓ The target improves without changing contracts or downstream behavior. The stated measurable goal is met, baseline behavior and public interfaces remain intact, and the relevant tests, type checks, lint checks, and affected-consumer checks pass under recorded conditions.
Why it works
A blast-radius map prevents a locally attractive change from breaking consumers elsewhere. Atomic iterations and fixed checks make it possible to reject a failed attempt without compounding uncertainty across later changes.
Implementation note
Do not discard unrelated work, modify public signatures or contracts without authorization, or manufacture a clean result by weakening tests or checks. An AST or generated dependency graph is optional when direct repository evidence provides a clearer impact map.
More testing loops
Watch tests while you work
A passive watchdog loop that reruns your test suite every 15 minutes and surfaces failing tests with their error output.
Kill flaky tests
Run your test suite repeatedly, collect every intermittent failure, and fix or quarantine flaky tests until you get five consecutive green runs.
Make all tests pass
Implement remaining code and run tests repeatedly until the full suite passes.