Add repo TDD skill
PR and Push Build/Test / build-and-test (push) Successful in 15m19s

This commit is contained in:
2026-05-30 22:02:05 +02:00
parent fd8c33f1ea
commit abac46c691
6 changed files with 301 additions and 0 deletions
@@ -0,0 +1,10 @@
# Refactor Candidates
After TDD cycle, look for:
- **Duplication** → Extract function/class
- **Long methods** → Break into private helpers (keep tests on public interface)
- **Shallow modules** → Combine or deepen
- **Feature envy** → Move logic to where data lives
- **Primitive obsession** → Introduce value objects
- **Existing code** the new code reveals as problematic