Tdd
Modular, scalable, automated development intelligence.
npx -y skills add DongDuong2001/pudo-code-system --skill tddAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 5 stars5 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Test-driven development workflows and red-green-refactor loops
SKILL.md
0.8 KB, as published. Nobody here has run it
Test-Driven Development (TDD) Skill
This skill guides the implementation of features using the TDD lifecycle.
When to use this skill
- When developing new features following strict TDD constraints.
- When refactoring legacy code safely by writing tests first.
Guidelines
- Red: Write a failing test for the next piece of functionality. Ensure it fails for the correct reason.
- Green: Write the absolute minimum amount of code necessary to make the test pass.
- Refactor: Improve the code quality, remove duplication, and optimize while ensuring tests remain green.
- Wait on edge cases: Don't write generalized code until the tests explicitly demand it through diverse test cases.