refactor-planner
SKILL.md
| Refactor type | TDD approach |
|---|---|
| Simple cleanups (removing unused imports, fixing formatting) | May skip test creation if existing tests provide adequate coverage |
| Type improvements (adding/refining TypeScript types) | Focus on type-checking validation rather than test-first approach |
| Documentation-only changes | No test cycle needed; validate with linting only |
| Code organization (file moves, renames) | Existing tests should pass unchanged |
| Complex logic changes | Always follow full TDD cycle for safety |