Skip to content

Commit 7a8824e

Browse files
committed
fix(docs): fix table separator spacing for MD060 compliance
1 parent b762d1c commit 7a8824e

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

docs/patterns/autonomous-quality-enforcement.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ flowchart TD
107107
```
108108

109109
| Component | Purpose | When It Runs |
110-
|-----------|---------|--------------|
110+
| --------- | ------- | ------------ |
111111
| **Process Rules** | Remind agent to validate | During development |
112112
| **Validation Loops** | Fix failures autonomously | Before presenting code |
113113
| **Git Hooks** | Final safety net | At commit time |
@@ -197,7 +197,7 @@ git add . && git commit -m "test" # Will run validation
197197
### Key Metrics
198198

199199
| Metric | Before AQE | Target | How to Measure |
200-
|--------|------------|--------|----------------|
200+
| ------ | ---------- | ------ | -------------- |
201201
| Broken code presentations | 2-5 per feature | 0 | Count user-reported crashes |
202202
| "Try this fix" iterations | 3-5 per bug | 0-1 | Count back-and-forth cycles |
203203
| Time to working code | Variable | First presentation | Track presentation-to-approval time |
@@ -326,7 +326,7 @@ No divergence. If CI fails, local will fail too.
326326
## Benefits
327327

328328
| Benefit | Description |
329-
|---------|-------------|
329+
| ------- | ----------- |
330330
| **Zero broken presentations** | Users only see working code |
331331
| **Faster iteration** | Agent self-corrects before asking for help |
332332
| **Clean git history** | Broken commits never enter the repository |

docs/patterns/multi-agent-code-review.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ flowchart TD
3333
### Key Characteristics
3434

3535
| Aspect | Description |
36-
|--------|-------------|
36+
| ------ | ----------- |
3737
| **Parallel execution** | All agents run simultaneously |
3838
| **Specialized focus** | Each agent reviews one dimension |
3939
| **Auto-fix loop** | Critical issues fixed before presentation |
@@ -117,7 +117,7 @@ Review the following code changes for [FOCUS AREA] issues.
117117
## Finding Categories
118118

119119
| Category | Action | Threshold |
120-
|----------|--------|-----------|
120+
| -------- | ------ | --------- |
121121
| **CRITICAL** | Auto-fix before presenting | Block presentation |
122122
| **WARNING** | Include in review notes | User decides |
123123
| **INFO** | Optional mention | Low priority |
@@ -150,7 +150,7 @@ Examples requiring human judgment:
150150
### Key Metrics
151151

152152
| Metric | Before | Target | How to Measure |
153-
|--------|--------|--------|----------------|
153+
| ------ | ------ | ------ | -------------- |
154154
| Critical issues in presented code | 2-3 | 0 | Agent review findings |
155155
| Rework cycles per feature | 3-5 | 1 | Iteration count |
156156
| Time spent on code review | Hours | Minutes | Review duration |
@@ -196,7 +196,7 @@ flowchart LR
196196
## Benefits
197197

198198
| Benefit | Description |
199-
|---------|-------------|
199+
| ------- | ----------- |
200200
| **Parallel speed** | 3 reviews in time of 1 |
201201
| **Specialized depth** | Each agent focuses on one area |
202202
| **Consistent standards** | Same review criteria every time |

0 commit comments

Comments
 (0)