@@ -83,11 +83,13 @@ Major changes to existing configurations should be discussed in an issue before
8383### 2. Create an Issue (Recommended)
8484
8585For significant contributions:
86+
86871 . Create an issue describing your proposed contribution
87882 . Wait for feedback from maintainers
88893 . Proceed once you have general agreement
8990
9091For minor fixes (typos, small corrections):
92+
9193- You can proceed directly to creating a pull request
9294
9395### 3. Development Workflow
@@ -103,6 +105,7 @@ git checkout -b <type>/<brief-description>
103105```
104106
105107** Branch Types** :
108+
106109- ` feature/ ` - New features or enhancements
107110- ` fix/ ` - Bug fixes
108111- ` docs/ ` - Documentation updates
@@ -111,6 +114,7 @@ git checkout -b <type>/<brief-description>
111114- ` chore/ ` - Maintenance tasks
112115
113116** Examples** :
117+
114118- ` feature/add-security-chatmode `
115119- ` fix/typo-in-developer-mode `
116120- ` docs/improve-contributing-guide `
@@ -120,7 +124,8 @@ git checkout -b <type>/<brief-description>
1201241 . ** Keep changes focused** : One logical change per pull request
1211252 . ** Small commits** : Make frequent, small commits with clear messages
1221263 . ** Follow conventions** : Use conventional commit format:
123- ```
127+
128+ ``` text
124129 <type>: <subject>
125130
126131 [optional body]
@@ -131,6 +136,7 @@ git checkout -b <type>/<brief-description>
131136** Commit Types** : ` feat ` , ` fix ` , ` docs ` , ` style ` , ` refactor ` , ` test ` , ` chore `
132137
133138** Examples** :
139+
134140- ` feat: Add security-focused chat mode with threat modeling `
135141- ` fix: Correct typo in Developer.chatmode.md `
136142- ` docs: Improve explanation of prompting techniques `
@@ -149,6 +155,7 @@ DESIGN RATIONALE: [Why this approach was chosen]
149155```
150156
151157** Example** :
158+
152159``` markdown
153160<!--
154161PURPOSE: Ensure consistent error handling across the codebase
@@ -220,7 +227,7 @@ When contributing, consider these priority levels:
220227
221228Familiarize yourself with the repository organization:
222229
223- ```
230+ ``` text
224231.github/
225232├── chatmodes/ # Custom chat mode definitions
226233├── instructions/ # Domain-specific instruction files
@@ -263,6 +270,7 @@ plans/ # Project planning documents
263270## Attribution
264271
265272We appreciate all contributors! Your contributions will be recognized in:
273+
266274- Git commit history
267275- Release notes (for significant contributions)
268276- GitHub's contributor tracking
@@ -274,6 +282,7 @@ By contributing, you agree that your contributions will be licensed under the sa
274282## Questions?
275283
276284If you have questions about contributing, please:
285+
2772861 . Check this guide and the referenced SSOT documents
2782872 . Review existing contributions for examples
2792883 . Open an issue with your question
0 commit comments