Add TDD chatmodes#119
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR adds three TDD chat modes that provide structured guidance for the Test-Driven Development cycle, helping developers maintain proper test-first discipline through GitHub issue integration and C#-focused best practices.
- TDD Red Phase for writing failing tests based on GitHub issue requirements
- TDD Green Phase for minimal implementation to make tests pass
- TDD Refactor Phase for improving code quality and security while maintaining green tests
Reviewed Changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| chatmodes/tdd-red.chatmode.md | Defines the Red phase chatmode for writing failing tests first based on GitHub issue context |
| chatmodes/tdd-green.chatmode.md | Defines the Green phase chatmode for minimal implementation to satisfy tests and issue requirements |
| chatmodes/tdd-refactor.chatmode.md | Defines the Refactor phase chatmode for improving code quality and applying security best practices |
| README.md | Updates the chatmodes table to include the three new TDD chatmode entries |
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Pull Request Checklist
node update-readme.jsand verified thatREADME.mdis up to date.Description
These chat modes provide structured guidance for each phase of the TDD cycle, helping developers maintain proper test-first discipline and avoid common TDD anti-patterns.
Type of Contribution
Additional Notes
By submitting this pull request, I confirm that my contribution abides by the Code of Conduct and will be licensed under the MIT License.