skills: Add /implement and dependencies.

This includes /test-driven-development and /codebase-design
This commit is contained in:
2026-07-05 13:52:44 -04:00
parent 28734f9777
commit 720eba8afb
11 changed files with 494 additions and 3 deletions

View File

@@ -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 — see DEEPENING.md in `/codebase-design` for dependency categories and seam discipline
- **Feature envy** → Move logic to where data lives
- **Primitive obsession** → Introduce value objects
- **Existing code** the new code reveals as problematic