Red/green TDD
Agentic Engineering Patterns > “Use red/green TDD” is a pleasingly succinct way to get better results out of a coding agent. TDD stands for Test Driven Development. It’s a programming style where you ensure every piece of code you write is accompanied by automated tests that demonstrate the code works. The most disciplined form of TDD is test-first development. You write the automated tests first, confirm that they fail, then iterate on the implementation until the tests pass. […]