@damenor/agent-docs 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +141 -71
- package/dist/index.js +259 -13
- package/package.json +11 -11
- package/templates/base/README.md +64 -69
- package/templates/base/docs/CONTEXT.md +111 -111
- package/templates/modules/agents/.agents/skills/doc-maintain/SKILL.md +193 -193
- package/templates/modules/agents/.agents/skills/doc-review/SKILL.md +223 -223
- package/templates/modules/agents/.agents/skills/doc-scaffold/SKILL.md +155 -155
- package/templates/modules/agents/.agents/skills/doc-write/SKILL.md +197 -197
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: doc-review
|
|
3
3
|
description: >
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
TRIGGER:
|
|
8
|
-
"
|
|
9
|
-
|
|
4
|
+
Audits the health of the project documentation. Verifies completeness,
|
|
5
|
+
currency, consistency, and coverage. Generates a health report with
|
|
6
|
+
a 0-100 score and action priorities.
|
|
7
|
+
TRIGGER: When the user says "audit docs", "review documentation",
|
|
8
|
+
"docs status", "healthy docs", "health check docs", or periodically
|
|
9
|
+
as part of project maintenance.
|
|
10
10
|
license: Apache-2.0
|
|
11
11
|
metadata:
|
|
12
12
|
author: damenordev
|
|
@@ -15,310 +15,310 @@ metadata:
|
|
|
15
15
|
|
|
16
16
|
# doc-review
|
|
17
17
|
|
|
18
|
-
##
|
|
18
|
+
## When to Use
|
|
19
19
|
|
|
20
|
-
- **
|
|
21
|
-
- **
|
|
22
|
-
- **
|
|
23
|
-
- **
|
|
24
|
-
- **
|
|
20
|
+
- **Periodic review**: Monthly or at the end of each sprint
|
|
21
|
+
- **Before releases**: Verify that docs are up to date
|
|
22
|
+
- **CI integration**: As an automatic step in the pipeline
|
|
23
|
+
- **New dev onboarding**: Verify that docs allow getting started
|
|
24
|
+
- **When docs feel outdated**: Sensation that docs don't reflect the code
|
|
25
25
|
|
|
26
|
-
##
|
|
26
|
+
## Critical Patterns
|
|
27
27
|
|
|
28
|
-
###
|
|
28
|
+
### RULE #1: Check for specific issues, not just existence
|
|
29
29
|
|
|
30
|
-
|
|
30
|
+
It's not enough to ask "does the file exist?". Check:
|
|
31
31
|
|
|
32
|
-
|
|
|
33
|
-
|
|
34
|
-
|
|
|
35
|
-
|
|
|
36
|
-
| TODO/TBD |
|
|
37
|
-
| Placeholder |
|
|
38
|
-
|
|
|
32
|
+
| Issue | What to look for |
|
|
33
|
+
|-------|------------------|
|
|
34
|
+
| Empty docs | Files with only frontmatter and title |
|
|
35
|
+
| Stale docs | Files without `last-reviewed` in >3 months |
|
|
36
|
+
| TODO/TBD | Search for `TODO`, `TBD`, `FIXME`, `PENDING` in content |
|
|
37
|
+
| Placeholder | Search for "pending content", "add here", empty sections |
|
|
38
|
+
| Broken wikilinks | `[[link]]` that doesn't resolve to an existing file |
|
|
39
39
|
|
|
40
|
-
###
|
|
40
|
+
### RULE #2: Validate Diátaxis coverage
|
|
41
41
|
|
|
42
|
-
|
|
42
|
+
All 4 quadrants must be covered:
|
|
43
43
|
|
|
44
44
|
```
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
45
|
+
Is there at least one tutorial? → tutorials/
|
|
46
|
+
Is there at least one how-to? → how-to/
|
|
47
|
+
Is there at least one reference file? → reference/
|
|
48
|
+
Is there at least one explanation? → explanation/
|
|
49
49
|
```
|
|
50
50
|
|
|
51
|
-
|
|
51
|
+
If an entire quadrant is missing, it is a CRITICAL gap.
|
|
52
52
|
|
|
53
|
-
###
|
|
53
|
+
### RULE #3: Verify CONTEXT.md consistency with code
|
|
54
54
|
|
|
55
55
|
```
|
|
56
|
-
1.
|
|
57
|
-
2.
|
|
58
|
-
3.
|
|
59
|
-
4.
|
|
56
|
+
1. Read CONTEXT.md → list of defined terms
|
|
57
|
+
2. Search code for terms used but not in CONTEXT.md
|
|
58
|
+
3. Search CONTEXT.md for terms that no longer exist in code
|
|
59
|
+
4. Report discrepancies
|
|
60
60
|
```
|
|
61
61
|
|
|
62
|
-
###
|
|
62
|
+
### RULE #4: Validate ADR completeness
|
|
63
63
|
|
|
64
64
|
```
|
|
65
|
-
1.
|
|
66
|
-
2.
|
|
67
|
-
3.
|
|
68
|
-
4.
|
|
65
|
+
1. Does every ADR have a valid status? (proposed, accepted, deprecated, superseded)
|
|
66
|
+
2. Is the numbering sequential without gaps?
|
|
67
|
+
3. Do deprecated ADRs have a documented replacement?
|
|
68
|
+
4. Does each ADR meet the 3 criteria (hard to reverse, surprising, trade-off)?
|
|
69
69
|
```
|
|
70
70
|
|
|
71
|
-
###
|
|
71
|
+
### RULE #5: Verify DESIGN.md sync with code
|
|
72
72
|
|
|
73
73
|
```
|
|
74
|
-
1.
|
|
75
|
-
2.
|
|
76
|
-
3.
|
|
77
|
-
4.
|
|
74
|
+
1. Read DESIGN.md → extract documented tokens
|
|
75
|
+
2. Read style files (CSS vars, Tailwind config)
|
|
76
|
+
3. Compare documented values vs actual values
|
|
77
|
+
4. Report differences
|
|
78
78
|
```
|
|
79
79
|
|
|
80
|
-
###
|
|
80
|
+
### RULE #6: Verify AGENTS.md protocol is followed
|
|
81
81
|
|
|
82
82
|
```
|
|
83
|
-
1.
|
|
84
|
-
2.
|
|
85
|
-
3.
|
|
83
|
+
1. Does AGENTS.md exist and have the protocol?
|
|
84
|
+
2. Do agents follow the protocol? (evidence in recent commits)
|
|
85
|
+
3. Does the folder structure match what's documented in AGENTS.md?
|
|
86
86
|
```
|
|
87
87
|
|
|
88
|
-
##
|
|
89
|
-
|
|
90
|
-
### 1.
|
|
91
|
-
|
|
92
|
-
**
|
|
93
|
-
-
|
|
94
|
-
-
|
|
95
|
-
-
|
|
96
|
-
-
|
|
97
|
-
|
|
98
|
-
**
|
|
99
|
-
|
|
|
100
|
-
|
|
101
|
-
|
|
|
102
|
-
|
|
|
103
|
-
|
|
|
104
|
-
|
|
105
|
-
### 2.
|
|
106
|
-
|
|
107
|
-
**
|
|
108
|
-
-
|
|
109
|
-
-
|
|
110
|
-
- CHANGELOG.md
|
|
111
|
-
- Screenshots
|
|
112
|
-
|
|
113
|
-
**
|
|
114
|
-
|
|
|
115
|
-
|
|
116
|
-
| Docs
|
|
117
|
-
| CHANGELOG
|
|
118
|
-
| No
|
|
119
|
-
|
|
120
|
-
### 3.
|
|
121
|
-
|
|
122
|
-
**
|
|
123
|
-
- CONTEXT.md vs
|
|
124
|
-
- DESIGN.md vs
|
|
125
|
-
- ADRs vs
|
|
126
|
-
- docs/README.md
|
|
127
|
-
-
|
|
128
|
-
|
|
129
|
-
**
|
|
130
|
-
|
|
|
131
|
-
|
|
132
|
-
| CONTEXT.md
|
|
133
|
-
| DESIGN.md
|
|
134
|
-
| docs/README.md
|
|
135
|
-
|
|
|
136
|
-
|
|
137
|
-
### 4.
|
|
138
|
-
|
|
139
|
-
**
|
|
140
|
-
- Diátaxis:
|
|
141
|
-
- Features:
|
|
142
|
-
- API:
|
|
143
|
-
-
|
|
144
|
-
-
|
|
145
|
-
|
|
146
|
-
**
|
|
147
|
-
|
|
|
148
|
-
|
|
149
|
-
| Diátaxis: 4
|
|
150
|
-
| API/endpoints
|
|
151
|
-
|
|
|
152
|
-
|
|
153
|
-
### 5.
|
|
154
|
-
|
|
155
|
-
**
|
|
156
|
-
-
|
|
157
|
-
-
|
|
158
|
-
-
|
|
159
|
-
-
|
|
160
|
-
-
|
|
161
|
-
|
|
162
|
-
**
|
|
163
|
-
|
|
|
164
|
-
|
|
165
|
-
|
|
|
166
|
-
|
|
|
167
|
-
|
|
|
168
|
-
|
|
169
|
-
##
|
|
170
|
-
|
|
171
|
-
###
|
|
88
|
+
## Review Dimensions
|
|
89
|
+
|
|
90
|
+
### 1. Completeness
|
|
91
|
+
|
|
92
|
+
**What to check**:
|
|
93
|
+
- Documentation files that should exist but don't
|
|
94
|
+
- Empty sections within existing files
|
|
95
|
+
- Code features without corresponding documentation
|
|
96
|
+
- Undocumented endpoints/functions/components
|
|
97
|
+
|
|
98
|
+
**Score**:
|
|
99
|
+
| Criterion | Points |
|
|
100
|
+
|-----------|--------|
|
|
101
|
+
| All essential files exist | 0-10 |
|
|
102
|
+
| All sections have real content | 0-10 |
|
|
103
|
+
| All public features are documented | 0-10 |
|
|
104
|
+
|
|
105
|
+
### 2. Currency
|
|
106
|
+
|
|
107
|
+
**What to check**:
|
|
108
|
+
- Files not updated in >3 months (check if relevant code changed)
|
|
109
|
+
- References to obsolete versions/libraries
|
|
110
|
+
- CHANGELOG.md outdated vs git tags
|
|
111
|
+
- Screenshots or diagrams that don't reflect current UI
|
|
112
|
+
|
|
113
|
+
**Score**:
|
|
114
|
+
| Criterion | Points |
|
|
115
|
+
|-----------|--------|
|
|
116
|
+
| Docs reflect current state of code | 0-10 |
|
|
117
|
+
| CHANGELOG is up to date | 0-5 |
|
|
118
|
+
| No references to old versions | 0-5 |
|
|
119
|
+
|
|
120
|
+
### 3. Consistency
|
|
121
|
+
|
|
122
|
+
**What to check**:
|
|
123
|
+
- CONTEXT.md vs code: terms match
|
|
124
|
+
- DESIGN.md vs styles: tokens match
|
|
125
|
+
- ADRs vs implementation: what the ADR says is what's in code
|
|
126
|
+
- docs/README.md map reflects real files
|
|
127
|
+
- Consistent format: frontmatter, naming, language
|
|
128
|
+
|
|
129
|
+
**Score**:
|
|
130
|
+
| Criterion | Points |
|
|
131
|
+
|-----------|--------|
|
|
132
|
+
| CONTEXT.md matches code | 0-5 |
|
|
133
|
+
| DESIGN.md matches styles | 0-5 |
|
|
134
|
+
| docs/README.md reflects real files | 0-5 |
|
|
135
|
+
| Consistent format across files | 0-5 |
|
|
136
|
+
|
|
137
|
+
### 4. Coverage
|
|
138
|
+
|
|
139
|
+
**What to check**:
|
|
140
|
+
- Diátaxis: all 4 quadrants are covered
|
|
141
|
+
- Features: each public feature has at least one associated doc
|
|
142
|
+
- API: all endpoints are documented
|
|
143
|
+
- Components: all UI components are in DESIGN.md
|
|
144
|
+
- Errors: common errors have troubleshooting
|
|
145
|
+
|
|
146
|
+
**Score**:
|
|
147
|
+
| Criterion | Points |
|
|
148
|
+
|-----------|--------|
|
|
149
|
+
| Diátaxis: 4 quadrants covered | 0-10 |
|
|
150
|
+
| API/endpoints documented | 0-5 |
|
|
151
|
+
| UI components in DESIGN.md | 0-5 |
|
|
152
|
+
|
|
153
|
+
### 5. Quality
|
|
154
|
+
|
|
155
|
+
**What to check**:
|
|
156
|
+
- Real content vs placeholder (no TODO, no "pending")
|
|
157
|
+
- Clear and correct writing
|
|
158
|
+
- Runnable examples in tutorials/how-tos
|
|
159
|
+
- Complete tables in reference
|
|
160
|
+
- No duplication between files
|
|
161
|
+
|
|
162
|
+
**Score**:
|
|
163
|
+
| Criterion | Points |
|
|
164
|
+
|-----------|--------|
|
|
165
|
+
| No placeholders or TODOs | 0-10 |
|
|
166
|
+
| Runnable examples | 0-5 |
|
|
167
|
+
| No content duplication | 0-5 |
|
|
168
|
+
|
|
169
|
+
## Health Score
|
|
170
|
+
|
|
171
|
+
### Calculation
|
|
172
172
|
|
|
173
173
|
```
|
|
174
|
-
|
|
174
|
+
Total score = Completeness (30) + Currency (20) + Consistency (20) + Coverage (20) + Quality (20) = 100
|
|
175
175
|
```
|
|
176
176
|
|
|
177
|
-
###
|
|
177
|
+
### Scale
|
|
178
178
|
|
|
179
|
-
|
|
|
180
|
-
|
|
181
|
-
| 90-100 | 🟢
|
|
182
|
-
| 70-89 | 🟡
|
|
183
|
-
| 50-69 | 🟠
|
|
184
|
-
| 0-49 | 🔴
|
|
179
|
+
| Score | Status | Action |
|
|
180
|
+
|-------|--------|--------|
|
|
181
|
+
| 90-100 | 🟢 Healthy | Maintain, periodic review |
|
|
182
|
+
| 70-89 | 🟡 Acceptable | Prioritized improvements identified |
|
|
183
|
+
| 50-69 | 🟠 Deficient | Requires significant work |
|
|
184
|
+
| 0-49 | 🔴 Critical | Fundamental documentation missing |
|
|
185
185
|
|
|
186
|
-
##
|
|
186
|
+
## Report Format
|
|
187
187
|
|
|
188
188
|
```markdown
|
|
189
|
-
#
|
|
189
|
+
# Documentation Health Report
|
|
190
190
|
|
|
191
|
-
**
|
|
192
|
-
**
|
|
193
|
-
**
|
|
191
|
+
**Date**: 2024-03-15
|
|
192
|
+
**Project**: [name]
|
|
193
|
+
**Score**: 72/100 🟡
|
|
194
194
|
|
|
195
|
-
##
|
|
195
|
+
## Summary by Dimension
|
|
196
196
|
|
|
197
|
-
|
|
|
198
|
-
|
|
199
|
-
|
|
|
200
|
-
|
|
|
201
|
-
|
|
|
202
|
-
|
|
|
203
|
-
|
|
|
197
|
+
| Dimension | Score | Maximum |
|
|
198
|
+
|-----------|-------|---------|
|
|
199
|
+
| Completeness | 22 | 30 |
|
|
200
|
+
| Currency | 15 | 20 |
|
|
201
|
+
| Consistency | 14 | 20 |
|
|
202
|
+
| Coverage | 12 | 20 |
|
|
203
|
+
| Quality | 9 | 10 |
|
|
204
204
|
| **Total** | **72** | **100** |
|
|
205
205
|
|
|
206
|
-
##
|
|
206
|
+
## Critical Issues 🔴
|
|
207
207
|
|
|
208
|
-
- [ ] No
|
|
209
|
-
- [ ] DESIGN.md
|
|
208
|
+
- [ ] No API documentation exists (reference/api.md)
|
|
209
|
+
- [ ] DESIGN.md has color values that don't match CSS variables
|
|
210
210
|
|
|
211
|
-
##
|
|
211
|
+
## Important Issues 🟡
|
|
212
212
|
|
|
213
|
-
- [ ]
|
|
214
|
-
- [ ] 3 ADRs
|
|
215
|
-
- [ ] CONTEXT.md
|
|
213
|
+
- [ ] Missing how-to coverage (empty folder)
|
|
214
|
+
- [ ] 3 ADRs without defined status
|
|
215
|
+
- [ ] CONTEXT.md doesn't include 5 terms used in code
|
|
216
216
|
|
|
217
|
-
##
|
|
217
|
+
## Suggested Improvements 🟢
|
|
218
218
|
|
|
219
|
-
- [ ]
|
|
220
|
-
- [ ]
|
|
221
|
-
- [ ]
|
|
219
|
+
- [ ] Add last-reviewed to files without review date
|
|
220
|
+
- [ ] Update CHANGELOG with last 3 releases
|
|
221
|
+
- [ ] Add runnable examples to tutorials/quick-start.md
|
|
222
222
|
|
|
223
|
-
##
|
|
223
|
+
## Detail by File
|
|
224
224
|
|
|
225
|
-
|
|
|
226
|
-
|
|
225
|
+
| File | Status | Issues |
|
|
226
|
+
|------|--------|--------|
|
|
227
227
|
| README.md | ✅ OK | — |
|
|
228
|
-
| CHANGELOG.md | ⚠️
|
|
229
|
-
| docs/CONTEXT.md | ⚠️
|
|
230
|
-
| docs/DESIGN.md | 🔴
|
|
228
|
+
| CHANGELOG.md | ⚠️ Outdated | Missing release 2.1.0 |
|
|
229
|
+
| docs/CONTEXT.md | ⚠️ Incomplete | 5 terms missing |
|
|
230
|
+
| docs/DESIGN.md | 🔴 Out of sync | 3 tokens don't match |
|
|
231
231
|
| docs/README.md | ✅ OK | — |
|
|
232
|
-
| reference/api.md | 🔴
|
|
232
|
+
| reference/api.md | 🔴 Missing | Does not exist |
|
|
233
233
|
| tutorials/ | ✅ OK | — |
|
|
234
|
-
| how-to/ | ⚠️
|
|
234
|
+
| how-to/ | ⚠️ Empty | No content |
|
|
235
235
|
| explanation/ | ✅ OK | — |
|
|
236
|
-
| docs/adr/ | ⚠️
|
|
236
|
+
| docs/adr/ | ⚠️ Incomplete | 3 ADRs without status |
|
|
237
237
|
```
|
|
238
238
|
|
|
239
|
-
##
|
|
239
|
+
## Review Process
|
|
240
240
|
|
|
241
|
-
###
|
|
241
|
+
### Step 1: Inventory
|
|
242
242
|
|
|
243
243
|
```
|
|
244
|
-
1.
|
|
245
|
-
2.
|
|
246
|
-
3.
|
|
244
|
+
1. List all existing documentation files
|
|
245
|
+
2. Verify docs/README.md vs real files
|
|
246
|
+
3. Identify missing files based on the stack
|
|
247
247
|
```
|
|
248
248
|
|
|
249
|
-
###
|
|
249
|
+
### Step 2: Verification by dimension
|
|
250
250
|
|
|
251
251
|
```
|
|
252
|
-
1.
|
|
253
|
-
2.
|
|
254
|
-
3.
|
|
255
|
-
4.
|
|
256
|
-
5.
|
|
252
|
+
1. Completeness: files, sections, features
|
|
253
|
+
2. Currency: dates, versions, recent changes
|
|
254
|
+
3. Consistency: CONTEXT, DESIGN, ADRs, README
|
|
255
|
+
4. Coverage: Diátaxis, API, components
|
|
256
|
+
5. Quality: placeholders, examples, duplicates
|
|
257
257
|
```
|
|
258
258
|
|
|
259
|
-
###
|
|
259
|
+
### Step 3: Scoring
|
|
260
260
|
|
|
261
261
|
```
|
|
262
|
-
|
|
263
|
-
|
|
262
|
+
Calculate score by dimension and total
|
|
263
|
+
Determine overall status (🟢🟡🟠🔴)
|
|
264
264
|
```
|
|
265
265
|
|
|
266
|
-
###
|
|
266
|
+
### Step 4: Generate report
|
|
267
267
|
|
|
268
268
|
```
|
|
269
|
-
1.
|
|
270
|
-
2.
|
|
271
|
-
3.
|
|
272
|
-
4.
|
|
269
|
+
1. List critical issues first
|
|
270
|
+
2. Important issues next
|
|
271
|
+
3. Suggested improvements at the end
|
|
272
|
+
4. Detail by file
|
|
273
273
|
```
|
|
274
274
|
|
|
275
|
-
###
|
|
275
|
+
### Step 5: Recommend actions
|
|
276
276
|
|
|
277
277
|
```
|
|
278
|
-
|
|
279
|
-
-
|
|
280
|
-
-
|
|
281
|
-
-
|
|
278
|
+
For each critical issue:
|
|
279
|
+
- Which file to create/update
|
|
280
|
+
- Which skill to use (doc-write, doc-design, etc.)
|
|
281
|
+
- Priority (immediate, this week, this sprint)
|
|
282
282
|
```
|
|
283
283
|
|
|
284
|
-
##
|
|
284
|
+
## Commands
|
|
285
285
|
|
|
286
|
-
###
|
|
286
|
+
### Quick verification
|
|
287
287
|
|
|
288
288
|
```
|
|
289
|
-
1.
|
|
290
|
-
2.
|
|
291
|
-
3.
|
|
292
|
-
4.
|
|
289
|
+
1. List doc files: docs/, tutorials/, how-to/, reference/, explanation/
|
|
290
|
+
2. Search TODOs: rg "TODO|TBD|FIXME|PENDING" --type md
|
|
291
|
+
3. Verify dates: check last-reviewed in frontmatter
|
|
292
|
+
4. Verify wikilinks: search [[...]] and verify they exist
|
|
293
293
|
```
|
|
294
294
|
|
|
295
|
-
###
|
|
295
|
+
### Deep verification
|
|
296
296
|
|
|
297
297
|
```
|
|
298
|
-
1. CONTEXT.md vs
|
|
299
|
-
2. DESIGN.md vs
|
|
300
|
-
3. ADRs vs
|
|
301
|
-
4. Diátaxis:
|
|
298
|
+
1. CONTEXT.md vs code: compare defined terms vs used terms
|
|
299
|
+
2. DESIGN.md vs styles: compare documented tokens vs actual ones
|
|
300
|
+
3. ADRs vs implementation: verify that code follows what was decided
|
|
301
|
+
4. Diátaxis: verify coverage of all 4 quadrants
|
|
302
302
|
```
|
|
303
303
|
|
|
304
|
-
##
|
|
304
|
+
## Escalations
|
|
305
305
|
|
|
306
|
-
###
|
|
306
|
+
### When to escalate (critical gap)
|
|
307
307
|
|
|
308
|
-
-
|
|
309
|
-
-
|
|
310
|
-
- CHANGELOG
|
|
311
|
-
-
|
|
312
|
-
- DESIGN.md
|
|
308
|
+
- No quick-start tutorial → onboarding blocked
|
|
309
|
+
- No API reference → integrators blocked
|
|
310
|
+
- Empty CHANGELOG → can't tell what changed between versions
|
|
311
|
+
- No CONTEXT.md → ambiguous terms cause confusion
|
|
312
|
+
- DESIGN.md out of sync → visual inconsistencies
|
|
313
313
|
|
|
314
|
-
###
|
|
314
|
+
### Action on escalation
|
|
315
315
|
|
|
316
|
-
1.
|
|
317
|
-
2.
|
|
318
|
-
3.
|
|
319
|
-
4.
|
|
316
|
+
1. Create the issue/task with high priority
|
|
317
|
+
2. Assign to the corresponding skill: `doc-write`, `doc-design`, `doc-scaffold`
|
|
318
|
+
3. Estimate effort
|
|
319
|
+
4. Include in the next sprint
|
|
320
320
|
|
|
321
|
-
##
|
|
321
|
+
## Resources
|
|
322
322
|
|
|
323
|
-
- [Health Checklist](references/health-checklist.md) —
|
|
324
|
-
-
|
|
323
|
+
- [Health Checklist](references/health-checklist.md) — Complete audit checklist with scoring rubric
|
|
324
|
+
- Related skills: `doc-write` (write missing docs), `doc-design` (fix DESIGN.md), `doc-scaffold` (create missing structure), `doc-maintain` (sync changes)
|