Implement Task
When to use
- •You have a task with acceptance criteria and file scope.
Instructions
- •Use
/test-writerto add failing tests for all criteria. - •Use
/implementerto make tests pass with minimal code. - •Report tests run + results.
采用 TDD 方法,先编写测试用例,再以最小化代码量实现单一任务。
--- frontmattername: implement-task description: Implement a single task using TDD (tests first, then minimal code).
/test-writer to add failing tests for all criteria./implementer to make tests pass with minimal code.