bug-fix-planner
Installation
SKILL.md
| Bug type | TDD approach |
|---|---|
| Simple bugs (typos, minor logic errors, incorrect constants) | May consolidate test writing and fixing in fewer steps if existing tests provide adequate coverage |
| Type-related bugs (missing/incorrect TypeScript types) | Focus on type-checking validation rather than test-first approach |
| Configuration bugs (incorrect environment settings, build config) | Validate with build/run rather than unit tests |
| Performance bugs | Require performance tests and benchmarks in addition to functional tests |
| Complex logic bugs | Always follow full TDD cycle for safety and thorough validation |