Execute a complete RED-GREEN-REFACTOR TDD cycle for Node.js/TypeScript development.
Executes a complete RED-GREEN-REFACTOR TDD cycle for Node.js/TypeScript development.
/plugin marketplace add DoubleslashSE/claude-marketplace/plugin install node-tdd@doubleslash-pluginsExecute a complete RED-GREEN-REFACTOR TDD cycle for Node.js/TypeScript development.
/tdd <feature-description>
feature-description: Description of the feature or behavior to implementAnalyze Requirements
Design Tests
test-designer agentVerify RED
npm testImplement Incrementally
implementer agentVerify Each Step
Achieve GREEN
Review Code
reviewer agentApply Improvements
refactorer agentQuality Gates
| Metric | Target |
|---|---|
| SOLID Compliance | 90% |
| Clean Code | 90% |
| Test Coverage | 90% |
| TypeScript Strict | 100% |
Each phase includes iterative feedback:
RED:
Design → Run → Analyze → Adjust
↑__________________________|
GREEN:
Implement → Run → Analyze → Fix
↑____________________________|
REFACTOR:
Review → Refactor → Run → Verify
↑_____________________________|
/tdd Create a user registration service that validates email format, checks password strength, and stores user data
This will:
The command produces:
/red - Run only the RED phase/green - Run only the GREEN phase/refactor - Run only the REFACTOR phase/review - Run code review