665 B
665 B
description
| description |
|---|
| Run TDD workflow — write failing tests, implement, verify. For bugs, use the Prove-It pattern. |
Invoke the agent-skills:test-driven-development skill.
For new features:
- Write tests that describe the expected behavior (they should FAIL)
- Implement the code to make them pass
- Refactor while keeping tests green
For bug fixes (Prove-It pattern):
- Write a test that reproduces the bug (must FAIL)
- Confirm the test fails
- Implement the fix
- Confirm the test passes
- Run the full test suite for regressions
For browser-related issues, also invoke agent-skills:browser-testing-with-devtools to verify with Chrome DevTools MCP.