Skip to content

Commit 0c7246e

Browse files
committed
feat: enhance documentation with additional examples and improve spelling consistency
1 parent c76bb4f commit 0c7246e

File tree

3 files changed

+17
-11
lines changed

3 files changed

+17
-11
lines changed

.vscode/settings.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
"gofmt",
1515
"GOPATH",
1616
"Lipgloss",
17+
"pycache",
18+
"pyproject",
1719
"Taskfile"
1820
]
1921
}

docs/agents.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,20 +24,23 @@ Each agent gives you actionable feedback, not just complaints!
2424
This 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
4144
Your Score = (Files Found) ÷ (Files Required)
4245
```
4346

@@ -134,7 +137,7 @@ validation:
134137

135138
#### Minimal Project Structure
136139

137-
```
140+
```txt
138141
project/
139142
├── README.md
140143
├── CONTRIBUTING.md
@@ -146,7 +149,7 @@ project/
146149

147150
#### Incomplete Project Structure
148151

149-
```
152+
```txt
150153
project/
151154
└── README.md
152155
```
@@ -168,7 +171,7 @@ The Git Configuration Agent checks for:
168171

169172
### Scoring Algorithm
170173

171-
```
174+
```txt
172175
Score = (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
257260
project/
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
268271
project/
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
291294
Score = (Valid Commits / Total Commits Checked) * 0.7 + (Branch Naming Valid ? 0.3 : 0)
292295
```
293296

docs/configuration.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ cbi schema --output schema.json
5454
```
5555

5656
**Schema validation catches:**
57+
5758
-**Type errors** - Wrong data types (string vs boolean)
5859
-**Invalid values** - Out of range numbers, unknown enum options
5960
-**Typos** - Misspelled property names
@@ -110,6 +111,7 @@ validation:
110111
*The foundation checker - makes sure your project has the basics covered.*
111112
112113
**Core Settings:**
114+
113115
```yaml
114116
essential-files:
115117
enabled: true
@@ -281,7 +283,7 @@ validation:
281283
format: "table"
282284
verbose: true
283285
styling:
284-
colors: true # Enable colored output
286+
colors: true # Enable coloured output
285287
unicode_symbols: true # Use Unicode symbols (✓, ✗, ⚠)
286288
show_score: true # Show numerical scores
287289
show_summary: true # Show overall summary
@@ -506,7 +508,7 @@ Invalid configuration will result in an error with specific details about the is
506508
When updating configuration:
507509

508510
1. Test changes locally first
509-
2. Update documentation if validation behavior changes
511+
2. Update documentation if validation behaviour changes
510512
3. Communicate changes to team members
511513
4. Consider backward compatibility
512514

@@ -540,7 +542,6 @@ Error: commit_history_depth must be a positive integer, got: -5
540542

541543
## Further Reading
542544

543-
- [Agent Documentation](agents.md) - Detailed agent behavior and customization
545+
- [Agent Documentation](agents.md) - Detailed agent behaviour and customization
544546
- [Usage Guide](usage.md) - CLI usage instructions
545547
- [Examples](examples/) - Real-world configuration examples
546-

0 commit comments

Comments
 (0)