Added implement-tests test command
It is useful at times to have a separate test and implement commands:
Example 3: Test-Driven Development
- Update your README.md to describe a new feature:
## Payment Processing
The system supports credit card payments via Stripe. Users can save multiple
payment methods and set a default. All transactions are logged for audit
purposes.
- Create a plan:
/plan payment-processing
Inspect plan.
- Implement tests first:
/implement-tests
Inspect tests.
-
Run tests to verify they fail (red phase)
-
Implement the code:
/implement
- Run tests to verify they pass (green phase)