@@ -24,20 +24,23 @@ Each agent gives you actionable feedback, not just complaints!
2424This agent ensures your project has the fundamental files that make it professional and approachable:
2525
2626** 🎯 README File** - Your project's front door
27+
2728- Looks for ` README.md ` , ` README.rst ` , or similar
2829- This is the first thing people see!
2930
3031** 🤝 Contributing Guidelines** - How others can help
32+
3133- Searches for ` CONTRIBUTING.md `
3234- Shows people how to get involved
3335
3436** 📚 Documentation Directory** - The knowledge base
37+
3538- Validates that you have a ` docs/ ` folder
3639- Checks that it actually contains useful content
3740
3841### How It Scores
3942
40- ```
43+ ``` txt
4144Your Score = (Files Found) ÷ (Files Required)
4245```
4346
@@ -134,7 +137,7 @@ validation:
134137
135138# ### Minimal Project Structure
136139
137- ```
140+ ` ` ` txt
138141project/
139142├── README.md
140143├── CONTRIBUTING.md
@@ -146,7 +149,7 @@ project/
146149
147150# ### Incomplete Project Structure
148151
149- ```
152+ ` ` ` txt
150153project/
151154└── README.md
152155` ` `
@@ -168,7 +171,7 @@ The Git Configuration Agent checks for:
168171
169172# ## Scoring Algorithm
170173
171- ```
174+ ` ` ` txt
172175Score = (Present Files + Weighted Optional Files) / (Total Required Files + Weighted Optional Files)
173176` ` `
174177
@@ -253,7 +256,7 @@ func detectProjectType(targetPath string) []string {
253256
254257# ### Well-Configured Git Setup
255258
256- ```
259+ ` ` ` txt
257260project/
258261├── .gitignore # Language-appropriate ignore rules
259262├── .editorconfig # Consistent code formatting
@@ -264,7 +267,7 @@ project/
264267
265268# ### Minimal Git Setup
266269
267- ```
270+ ` ` ` txt
268271project/
269272├── .gitignore # Basic ignore rules
270273└── .editorconfig # Basic formatting rules
@@ -287,7 +290,7 @@ The Development Standards Agent performs these checks:
287290
288291# ## Scoring Algorithm
289292
290- ```
293+ ` ` ` txt
291294Score = (Valid Commits / Total Commits Checked) * 0.7 + (Branch Naming Valid ? 0.3 : 0)
292295` ` `
293296
0 commit comments