dev-playbooks 1.0.9 → 1.0.11
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 +251 -260
- package/bin/devbooks.js +12 -12
- package/package.json +1 -1
- package/skills/_shared/mcp-enhancement-template.md +1 -1
- package/skills/devbooks-brownfield-bootstrap/SKILL.md +1 -1
- package/skills/devbooks-c4-map/SKILL.md +1 -1
- package/skills/devbooks-coder/SKILL.md +1 -1
- package/skills/devbooks-delivery-workflow/SKILL.md +1 -1
- package/skills/devbooks-impact-analysis/SKILL.md +1 -1
- package/skills/devbooks-proposal-author/references/proposal-authoring-prompt.md +1 -1
- package/skills/devbooks-router/SKILL.md +17 -17
- package/skills/devbooks-spec-contract/SKILL.md +1 -1
package/README.md
CHANGED
|
@@ -1,105 +1,83 @@
|
|
|
1
1
|
# DevBooks
|
|
2
2
|
|
|
3
|
-
**
|
|
3
|
+
**An agentic AI development workflow for Claude Code / Codex CLI**
|
|
4
4
|
|
|
5
|
-
>
|
|
5
|
+
> Turn large changes into a controlled, traceable, verifiable loop: Skills + quality gates + role isolation.
|
|
6
6
|
|
|
7
7
|
[](https://www.npmjs.com/package/dev-playbooks)
|
|
8
8
|
[](LICENSE)
|
|
9
9
|
|
|
10
|
+

|
|
11
|
+
|
|
10
12
|
---
|
|
11
13
|
|
|
12
14
|
## Why DevBooks?
|
|
13
15
|
|
|
14
16
|
AI coding assistants are powerful, but often **unpredictable**:
|
|
15
17
|
|
|
16
|
-
| Pain
|
|
17
|
-
|
|
18
|
-
| **AI self-declares "done"** | Tests
|
|
19
|
-
| **
|
|
20
|
-
| **No verification gates** | False
|
|
21
|
-
| **Only
|
|
22
|
-
| **Too few commands** | Complex changes
|
|
18
|
+
| Pain point | Outcome |
|
|
19
|
+
|------|------|
|
|
20
|
+
| **AI self-declares "done"** | Tests fail, edge cases are missed |
|
|
21
|
+
| **Writing tests and code in the same chat** | Tests turn into “pass tests” instead of spec verification |
|
|
22
|
+
| **No verification gates** | False completion silently ships |
|
|
23
|
+
| **Only works for greenfield (0→1)** | Brownfield repos have no on-ramp |
|
|
24
|
+
| **Too few commands** | Complex changes are not just "spec/apply/archive" |
|
|
23
25
|
|
|
24
|
-
**DevBooks
|
|
25
|
-
- **Evidence-based
|
|
26
|
-
- **
|
|
27
|
-
- **Multiple quality gates**:
|
|
28
|
-
- **21 Skills**:
|
|
26
|
+
**DevBooks provides**:
|
|
27
|
+
- **Evidence-based done**: completion is defined by tests/build/evidence, not AI self-evaluation
|
|
28
|
+
- **Enforced role isolation**: Test Owner and Coder must work in separate conversations
|
|
29
|
+
- **Multiple quality gates**: green evidence checks, task completion, role boundary checks
|
|
30
|
+
- **21 Skills**: proposal, design, debate, review, entropy metrics, federation, and more
|
|
29
31
|
|
|
30
32
|
---
|
|
31
33
|
|
|
32
|
-
## DevBooks Comparison
|
|
34
|
+
## DevBooks At a Glance (Comparison)
|
|
33
35
|
|
|
34
|
-
| Dimension | DevBooks | OpenSpec | spec-kit | No
|
|
35
|
-
|
|
36
|
-
|
|
|
37
|
-
|
|
|
38
|
-
|
|
|
39
|
-
|
|
|
40
|
-
|
|
|
41
|
-
|
|
|
42
|
-
|
|
|
43
|
-
|
|
|
44
|
-
| **Best for** | Large/critical changes | Lightweight changes | 0→1 projects | Simple tasks |
|
|
36
|
+
| Dimension | DevBooks | OpenSpec | spec-kit | No spec |
|
|
37
|
+
|------|----------|----------|----------|--------|
|
|
38
|
+
| Spec-driven workflow | Yes | Yes | Yes | No |
|
|
39
|
+
| Artifact traceability | Change package (proposal/design/spec/tasks/verification/evidence) | Mostly folder/file organization | Docs + tasks orchestration | None |
|
|
40
|
+
| Role & responsibility boundaries | **Enforced** (Test Owner / Coder) | Convention-based (not enforced) | Convention-based (not enforced) | None |
|
|
41
|
+
| Definition of Done (DoD) | **Evidence + gates** (tests/build/audit) | Manual definition/checks | Manual definition/checks | Often subjective |
|
|
42
|
+
| Code quality assurance | Gates + metrics (entropy/hotspots) + review roles | External tools / manual review | External tools / manual review | Unstable |
|
|
43
|
+
| Impact analysis | CKB graph capability (falls back to grep) | Text search / manual reasoning | Text search / manual reasoning | Easy to miss |
|
|
44
|
+
| Brownfield onboarding | Baseline specs/glossary/minimal verification anchors | Manual | Limited | - |
|
|
45
|
+
| Automation coverage | 21 Skills (proposal→implementation→archive loop) | 3 core commands | Toolkit (greenfield-leaning) | - |
|
|
45
46
|
|
|
46
47
|
---
|
|
47
48
|
|
|
48
49
|
## How It Works
|
|
49
50
|
|
|
50
|
-
|
|
51
|
-
DevBooks Workflow
|
|
52
|
-
|
|
53
|
-
PROPOSAL Phase APPLY Phase ARCHIVE Phase
|
|
54
|
-
(No coding) (Role isolation enforced) (Quality gates)
|
|
55
|
-
|
|
56
|
-
┌─────────────────┐ ┌─────────────────┐ ┌─────────────────┐
|
|
57
|
-
│ /devbooks: │ │ Session A │ │ /devbooks: │
|
|
58
|
-
│ proposal │ │ ┌───────────┐ │ │ gardener │
|
|
59
|
-
│ impact │─────────│ │Test Owner │ │────────────│ delivery │
|
|
60
|
-
│ design │ │ │(Run Red │ │ │ │
|
|
61
|
-
│ spec │ │ │ first) │ │ │ Quality Gates: │
|
|
62
|
-
│ plan │ │ └───────────┘ │ │ ✓ Green evidence│
|
|
63
|
-
└─────────────────┘ │ │ │ ✓ Task complete │
|
|
64
|
-
│ │ Session B │ │ ✓ Role boundary │
|
|
65
|
-
▼ │ ┌───────────┐ │ │ ✓ No failures │
|
|
66
|
-
┌─────────────────┐ │ │ Coder │ │ └─────────────────┘
|
|
67
|
-
│ Triangle Debate │ │ │(Cannot │ │
|
|
68
|
-
│ Author/Challenger│ │ │edit tests)│ │
|
|
69
|
-
│ /Judge │ │ └───────────┘ │
|
|
70
|
-
└─────────────────┘ └─────────────────┘
|
|
71
|
-
```
|
|
72
|
-
|
|
73
|
-
**Core Constraint**: Test Owner and Coder **must work in separate conversations**. This is a hard constraint, not a suggestion. Coder cannot modify `tests/**`; completion is verified by tests/builds, not AI self-assessment.
|
|
51
|
+
**Hard constraint**: Test Owner and Coder **must work in separate conversations**. This is not a suggestion. Coder cannot modify `tests/**`. "Done" is defined by tests/build verification, not AI self-evaluation.
|
|
74
52
|
|
|
75
53
|
---
|
|
76
54
|
|
|
77
55
|
## Quick Start
|
|
78
56
|
|
|
79
|
-
### Supported AI
|
|
57
|
+
### Supported AI tools
|
|
80
58
|
|
|
81
|
-
| Tool | Support Level |
|
|
82
|
-
|
|
83
|
-
| **Claude Code** | Full Skills |
|
|
84
|
-
| **Codex CLI** | Full Skills |
|
|
85
|
-
| **Qoder** | Full Skills |
|
|
86
|
-
| **Cursor** | Rules |
|
|
87
|
-
| **Windsurf** | Rules |
|
|
88
|
-
| **Gemini CLI** | Rules |
|
|
89
|
-
| **Continue** | Rules |
|
|
90
|
-
| **GitHub Copilot** | Instructions |
|
|
59
|
+
| Tool | Support Level | Config File |
|
|
60
|
+
|------|---------------|-------------|
|
|
61
|
+
| **Claude Code** | Full Skills | `CLAUDE.md` |
|
|
62
|
+
| **Codex CLI** | Full Skills | `AGENTS.md` |
|
|
63
|
+
| **Qoder** | Full Skills | `AGENTS.md` |
|
|
64
|
+
| **Cursor** | Rules | `.cursor/rules/` |
|
|
65
|
+
| **Windsurf** | Rules | `.windsurf/rules/` |
|
|
66
|
+
| **Gemini CLI** | Rules | `GEMINI.md` |
|
|
67
|
+
| **Continue** | Rules | `.continue/rules/` |
|
|
68
|
+
| **GitHub Copilot** | Instructions | `.github/copilot-instructions.md` |
|
|
91
69
|
|
|
92
|
-
> **Tip**:
|
|
70
|
+
> **Tip**: Use natural language to invoke skills, e.g., "Run devbooks-proposal-author skill to create a proposal for adding OAuth2 authentication"
|
|
93
71
|
|
|
94
|
-
###
|
|
72
|
+
### Install & init
|
|
95
73
|
|
|
96
|
-
**npm
|
|
74
|
+
**Install via npm (recommended):**
|
|
97
75
|
|
|
98
76
|
```bash
|
|
99
|
-
#
|
|
77
|
+
# global install
|
|
100
78
|
npm install -g dev-playbooks
|
|
101
79
|
|
|
102
|
-
#
|
|
80
|
+
# init inside your project
|
|
103
81
|
dev-playbooks init
|
|
104
82
|
```
|
|
105
83
|
|
|
@@ -109,314 +87,330 @@ dev-playbooks init
|
|
|
109
87
|
npx dev-playbooks@latest init
|
|
110
88
|
```
|
|
111
89
|
|
|
112
|
-
**
|
|
90
|
+
**From source (contributors):**
|
|
113
91
|
|
|
114
92
|
```bash
|
|
115
|
-
|
|
93
|
+
../scripts/install-skills.sh
|
|
116
94
|
```
|
|
117
95
|
|
|
118
|
-
###
|
|
96
|
+
### Install targets
|
|
119
97
|
|
|
120
98
|
After initialization:
|
|
121
99
|
- Claude Code: `~/.claude/skills/devbooks-*`
|
|
122
|
-
- Codex CLI:
|
|
100
|
+
- Codex CLI: `~/.codex/skills/devbooks-*`
|
|
101
|
+
- Qoder: `~/.qoder/` (manual setup required)
|
|
123
102
|
|
|
124
|
-
### Quick
|
|
103
|
+
### Quick integration
|
|
125
104
|
|
|
126
105
|
DevBooks uses two directory roots:
|
|
127
106
|
|
|
128
107
|
| Directory | Purpose | Default |
|
|
129
|
-
|
|
108
|
+
|------|------|--------|
|
|
130
109
|
| `<truth-root>` | Current specs (read-only truth) | `dev-playbooks/specs/` |
|
|
131
110
|
| `<change-root>` | Change packages (workspace) | `dev-playbooks/changes/` |
|
|
132
111
|
|
|
133
|
-
See `docs/devbooks-
|
|
112
|
+
See `docs/devbooks-setup-guide.md`, or use the "Quick Start" prompt in that guide to let your assistant configure it automatically.
|
|
134
113
|
|
|
135
114
|
---
|
|
136
115
|
|
|
137
|
-
##
|
|
116
|
+
## Day-to-Day Change Workflow
|
|
138
117
|
|
|
139
|
-
###
|
|
118
|
+
### Use Router (recommended)
|
|
140
119
|
|
|
141
120
|
```
|
|
142
|
-
|
|
121
|
+
Run devbooks-router skill: <your request>
|
|
143
122
|
```
|
|
144
123
|
|
|
145
|
-
Router analyzes
|
|
124
|
+
Router analyzes your request and outputs an execution plan (which skill to run next).
|
|
146
125
|
|
|
147
|
-
### Direct
|
|
126
|
+
### Direct skill invocation
|
|
148
127
|
|
|
149
|
-
Once
|
|
128
|
+
Once you know the flow, call the Skills directly:
|
|
150
129
|
|
|
151
|
-
**1
|
|
130
|
+
**1) Proposal stage (no coding)**
|
|
152
131
|
|
|
153
132
|
```
|
|
154
|
-
|
|
133
|
+
Run devbooks-proposal-author skill to create a proposal: Add OAuth2 user authentication
|
|
155
134
|
```
|
|
156
135
|
|
|
157
136
|
Artifacts: `proposal.md` (required), `design.md`, `tasks.md`
|
|
158
137
|
|
|
159
|
-
**2
|
|
138
|
+
**2) Apply stage (role isolation enforced)**
|
|
160
139
|
|
|
161
|
-
|
|
140
|
+
You must use **two separate conversations**:
|
|
162
141
|
|
|
163
142
|
```
|
|
164
|
-
#
|
|
165
|
-
|
|
143
|
+
# Chat A - Test Owner
|
|
144
|
+
Run devbooks-test-owner skill for change add-oauth2
|
|
166
145
|
|
|
167
|
-
#
|
|
168
|
-
|
|
146
|
+
# Chat B - Coder
|
|
147
|
+
Run devbooks-coder skill for change add-oauth2
|
|
169
148
|
```
|
|
170
149
|
|
|
171
|
-
- Test Owner:
|
|
172
|
-
- Coder:
|
|
150
|
+
- Test Owner: writes `verification.md` + tests, runs **Red** first
|
|
151
|
+
- Coder: implements per `tasks.md`, makes gates **Green** (cannot modify tests)
|
|
173
152
|
|
|
174
|
-
**3
|
|
153
|
+
**3) Review stage**
|
|
175
154
|
|
|
176
155
|
```
|
|
177
|
-
|
|
156
|
+
Run devbooks-code-review skill for change add-oauth2
|
|
178
157
|
```
|
|
179
158
|
|
|
180
|
-
**4
|
|
159
|
+
**4) Archive stage**
|
|
181
160
|
|
|
182
161
|
```
|
|
183
|
-
|
|
162
|
+
Run devbooks-spec-gardener skill for change add-oauth2
|
|
184
163
|
```
|
|
185
164
|
|
|
186
165
|
---
|
|
187
166
|
|
|
188
|
-
##
|
|
167
|
+
## Skills Reference
|
|
189
168
|
|
|
190
|
-
### Proposal
|
|
169
|
+
### Proposal stage
|
|
191
170
|
|
|
192
|
-
|
|
|
193
|
-
|
|
194
|
-
|
|
|
195
|
-
|
|
|
196
|
-
|
|
|
197
|
-
|
|
|
198
|
-
|
|
|
199
|
-
|
|
|
200
|
-
|
|
|
201
|
-
|
|
|
202
|
-
|
|
|
203
|
-
|
|
|
171
|
+
| Skill | Description |
|
|
172
|
+
|-------|-------------|
|
|
173
|
+
| devbooks-router | Route to the right Skill |
|
|
174
|
+
| devbooks-proposal-author | Create a change proposal |
|
|
175
|
+
| devbooks-impact-analysis | Cross-module impact analysis |
|
|
176
|
+
| devbooks-proposal-challenger | Challenge a proposal |
|
|
177
|
+
| devbooks-proposal-judge | Adjudicate a proposal |
|
|
178
|
+
| devbooks-proposal-debate-workflow | Triangle debate (Author/Challenger/Judge) |
|
|
179
|
+
| devbooks-design-doc | Create a design doc |
|
|
180
|
+
| devbooks-spec-contract | Define specs & contracts |
|
|
181
|
+
| devbooks-c4-map | Generate a C4 map |
|
|
182
|
+
| devbooks-implementation-plan | Create an implementation plan |
|
|
204
183
|
|
|
205
|
-
### Apply
|
|
184
|
+
### Apply stage
|
|
206
185
|
|
|
207
|
-
|
|
|
208
|
-
|
|
209
|
-
|
|
|
210
|
-
|
|
|
211
|
-
|
|
|
186
|
+
| Skill | Description |
|
|
187
|
+
|-------|-------------|
|
|
188
|
+
| devbooks-test-owner | Test Owner role (separate chat required) |
|
|
189
|
+
| devbooks-coder | Coder role (separate chat required) |
|
|
190
|
+
| devbooks-design-backport | Backport discoveries to design |
|
|
212
191
|
|
|
213
|
-
### Review
|
|
192
|
+
### Review stage
|
|
214
193
|
|
|
215
|
-
|
|
|
216
|
-
|
|
217
|
-
|
|
|
218
|
-
| `/devbooks:test-review` | devbooks-test-reviewer | Test quality and coverage review |
|
|
194
|
+
| Skill | Description |
|
|
195
|
+
|-------|-------------|
|
|
196
|
+
| devbooks-code-review | Code review (readability/consistency) |
|
|
219
197
|
|
|
220
|
-
### Archive
|
|
198
|
+
### Archive stage
|
|
221
199
|
|
|
222
|
-
|
|
|
223
|
-
|
|
224
|
-
|
|
|
225
|
-
|
|
|
200
|
+
| Skill | Description |
|
|
201
|
+
|-------|-------------|
|
|
202
|
+
| devbooks-spec-gardener | Maintain/dedupe specs |
|
|
203
|
+
| devbooks-delivery-workflow | End-to-end delivery workflow |
|
|
226
204
|
|
|
227
205
|
### Standalone Skills
|
|
228
206
|
|
|
229
|
-
|
|
|
230
|
-
|
|
231
|
-
|
|
|
232
|
-
|
|
|
233
|
-
|
|
|
234
|
-
|
|
|
207
|
+
| Skill | Description |
|
|
208
|
+
|-------|-------------|
|
|
209
|
+
| devbooks-entropy-monitor | System entropy metrics |
|
|
210
|
+
| devbooks-federation | Cross-repo federation analysis |
|
|
211
|
+
| devbooks-brownfield-bootstrap | Brownfield project bootstrap |
|
|
212
|
+
| devbooks-index-bootstrap | Generate a SCIP index |
|
|
235
213
|
|
|
236
214
|
---
|
|
237
215
|
|
|
238
|
-
##
|
|
239
|
-
|
|
240
|
-
<details>
|
|
241
|
-
<summary><strong>Detailed Comparison with Other Tools</strong></summary>
|
|
216
|
+
## DevBooks Comparisons
|
|
242
217
|
|
|
243
218
|
### vs. OpenSpec
|
|
244
219
|
|
|
245
|
-
[OpenSpec](https://github.com/Fission-AI/OpenSpec) is a lightweight spec-driven framework
|
|
220
|
+
[OpenSpec](https://github.com/Fission-AI/OpenSpec) is a lightweight spec-driven framework with three core commands (proposal/apply/archive), organizing changes by feature folders.
|
|
246
221
|
|
|
247
|
-
**DevBooks adds:**
|
|
248
|
-
- **Role isolation**:
|
|
249
|
-
- **Quality gates**: 5+ verification gates to
|
|
250
|
-
- **21 Skills**:
|
|
251
|
-
- **Evidence-based
|
|
222
|
+
**What DevBooks adds:**
|
|
223
|
+
- **Role isolation**: hard boundary between Test Owner and Coder (separate chats)
|
|
224
|
+
- **Quality gates**: 5+ verification gates to block false completion
|
|
225
|
+
- **21 Skills**: proposal, debate, review, entropy metrics, federation, etc.
|
|
226
|
+
- **Evidence-based done**: tests/build define “done”, not self-evaluation
|
|
252
227
|
|
|
253
|
-
**Choose OpenSpec**:
|
|
228
|
+
**Choose OpenSpec**: you want a lightweight spec workflow.
|
|
254
229
|
|
|
255
|
-
**Choose DevBooks**:
|
|
230
|
+
**Choose DevBooks**: you need role separation and verification gates for larger changes.
|
|
256
231
|
|
|
257
232
|
### vs. spec-kit
|
|
258
233
|
|
|
259
|
-
[GitHub spec-kit](https://github.com/github/spec-kit)
|
|
234
|
+
[GitHub spec-kit](https://github.com/github/spec-kit) is a spec-driven toolkit with a constitution file, multi-step refinement, and structured planning.
|
|
260
235
|
|
|
261
|
-
**DevBooks adds:**
|
|
262
|
-
- **
|
|
263
|
-
- **Role isolation**:
|
|
264
|
-
- **Quality gates**:
|
|
265
|
-
- **Prototype mode**:
|
|
236
|
+
**What DevBooks adds:**
|
|
237
|
+
- **Brownfield-first**: generates baseline specs for existing repos
|
|
238
|
+
- **Role isolation**: test authoring and implementation are separated
|
|
239
|
+
- **Quality gates**: runtime verification, not just workflow guidance
|
|
240
|
+
- **Prototype mode**: safe experiments without polluting main `src/`
|
|
266
241
|
|
|
267
|
-
**Choose spec-kit**:
|
|
242
|
+
**Choose spec-kit**: greenfield projects with supported AI tools.
|
|
268
243
|
|
|
269
|
-
**Choose DevBooks**:
|
|
244
|
+
**Choose DevBooks**: brownfield repos or when you want enforced gates.
|
|
270
245
|
|
|
271
246
|
### vs. Kiro.dev
|
|
272
247
|
|
|
273
|
-
[Kiro](https://kiro.dev/) is AWS
|
|
248
|
+
[Kiro](https://kiro.dev/) is an AWS agentic IDE with a three-phase workflow (EARS requirements, design, tasks), but stores specs separately from implementation artifacts.
|
|
274
249
|
|
|
275
250
|
**DevBooks differences:**
|
|
276
|
-
- **Change
|
|
277
|
-
- **Role isolation**:
|
|
278
|
-
- **Quality gates**:
|
|
251
|
+
- **Change package**: proposal/design/spec/plan/verification/evidence in one place for lifecycle traceability
|
|
252
|
+
- **Role isolation**: Test Owner and Coder are separated
|
|
253
|
+
- **Quality gates**: verified through gates, not just task completion
|
|
279
254
|
|
|
280
|
-
**Choose Kiro**:
|
|
255
|
+
**Choose Kiro**: you want an IDE experience and AWS ecosystem integration.
|
|
281
256
|
|
|
282
|
-
**Choose DevBooks**:
|
|
257
|
+
**Choose DevBooks**: you want change packages to bundle artifacts and enforce role boundaries.
|
|
283
258
|
|
|
284
|
-
### vs.
|
|
259
|
+
### vs. no spec
|
|
285
260
|
|
|
286
|
-
Without specs,
|
|
261
|
+
Without specs, the assistant generates code from vague prompts, leading to unpredictable output, scope creep, and “hallucinated completion”.
|
|
287
262
|
|
|
288
|
-
**DevBooks
|
|
289
|
-
-
|
|
290
|
-
- Quality gates
|
|
291
|
-
- Role isolation to prevent self-
|
|
292
|
-
- Evidence chain
|
|
263
|
+
**DevBooks brings:**
|
|
264
|
+
- Specs agreed before implementation
|
|
265
|
+
- Quality gates that verify real completion
|
|
266
|
+
- Role isolation to prevent self-verification
|
|
267
|
+
- Evidence chain per change
|
|
293
268
|
|
|
294
|
-
|
|
269
|
+
---
|
|
270
|
+
|
|
271
|
+
## Core Principles
|
|
272
|
+
|
|
273
|
+
| Principle | Meaning |
|
|
274
|
+
|------|------|
|
|
275
|
+
| **Protocol first** | truth/change/archive live in the repo, not only in chat logs |
|
|
276
|
+
| **Anchor first** | done is defined by tests/static checks/build/evidence |
|
|
277
|
+
| **Role isolation** | Test Owner and Coder must work in separate conversations |
|
|
278
|
+
| **Truth root separation** | `<truth-root>` is read-only truth; `<change-root>` is the workspace |
|
|
279
|
+
| **Structural gates** | prioritize complexity/coupling/test quality, not proxy metrics |
|
|
280
|
+
|
|
281
|
+
---
|
|
282
|
+
|
|
283
|
+
## Advanced Features
|
|
295
284
|
|
|
296
285
|
<details>
|
|
297
|
-
<summary><strong>Quality
|
|
286
|
+
<summary><strong>Quality gates</strong></summary>
|
|
298
287
|
|
|
299
|
-
DevBooks
|
|
288
|
+
DevBooks uses quality gates to block “false done”:
|
|
300
289
|
|
|
301
|
-
| Gate | Trigger
|
|
302
|
-
|
|
303
|
-
| Green
|
|
304
|
-
| Task
|
|
305
|
-
| Test
|
|
306
|
-
| P0
|
|
307
|
-
| Role
|
|
290
|
+
| Gate | Trigger mode | What it checks |
|
|
291
|
+
|------|----------|----------|
|
|
292
|
+
| Green evidence | archive, strict | `evidence/green-final/` exists and is non-empty |
|
|
293
|
+
| Task completion | strict | all tasks are done or SKIP-APPROVED |
|
|
294
|
+
| Test failure block | archive, strict | no failures in green evidence |
|
|
295
|
+
| P0 skip approval | strict | P0 skips require an approval record |
|
|
296
|
+
| Role boundary | apply --role | Coder cannot modify tests/, Test Owner cannot modify src/ |
|
|
308
297
|
|
|
309
|
-
|
|
298
|
+
Core scripts (in `../skills/devbooks-delivery-workflow/scripts/`):
|
|
310
299
|
- `change-check.sh --mode proposal|apply|archive|strict`
|
|
311
|
-
- `handoff-check.sh` -
|
|
312
|
-
- `audit-scope.sh` -
|
|
313
|
-
- `progress-dashboard.sh` -
|
|
300
|
+
- `handoff-check.sh` - handoff boundary checks
|
|
301
|
+
- `audit-scope.sh` - full audit scan
|
|
302
|
+
- `progress-dashboard.sh` - progress visualization
|
|
314
303
|
|
|
315
304
|
</details>
|
|
316
305
|
|
|
317
306
|
<details>
|
|
318
|
-
<summary><strong>Prototype
|
|
307
|
+
<summary><strong>Prototype mode</strong></summary>
|
|
319
308
|
|
|
320
|
-
When technical approach is uncertain:
|
|
309
|
+
When the technical approach is uncertain:
|
|
321
310
|
|
|
322
|
-
1. Create prototype: `change-scaffold.sh <change-id> --prototype`
|
|
323
|
-
2. Test Owner
|
|
324
|
-
3. Coder
|
|
311
|
+
1. Create a prototype: `change-scaffold.sh <change-id> --prototype`
|
|
312
|
+
2. Test Owner with `--prototype`: characterization tests (no Red baseline required)
|
|
313
|
+
3. Coder with `--prototype`: output to `prototype/src/` (isolates main src)
|
|
325
314
|
4. Promote or discard: `prototype-promote.sh <change-id>`
|
|
326
315
|
|
|
327
|
-
Prototype mode prevents experimental code from polluting main
|
|
316
|
+
Prototype mode prevents experimental code from polluting the main tree.
|
|
317
|
+
|
|
318
|
+
Scripts live in `../skills/devbooks-delivery-workflow/scripts/`.
|
|
328
319
|
|
|
329
320
|
</details>
|
|
330
321
|
|
|
331
322
|
<details>
|
|
332
|
-
<summary><strong>Entropy
|
|
323
|
+
<summary><strong>Entropy monitoring</strong></summary>
|
|
333
324
|
|
|
334
|
-
DevBooks tracks four
|
|
325
|
+
DevBooks tracks four dimensions of system entropy:
|
|
335
326
|
|
|
336
|
-
| Metric | What
|
|
337
|
-
|
|
338
|
-
| Structural
|
|
339
|
-
| Change
|
|
340
|
-
| Test
|
|
341
|
-
| Dependency
|
|
327
|
+
| Metric | What it measures |
|
|
328
|
+
|------|----------|
|
|
329
|
+
| Structural entropy | module complexity and coupling |
|
|
330
|
+
| Change entropy | change patterns and volatility |
|
|
331
|
+
| Test entropy | coverage/quality decay over time |
|
|
332
|
+
| Dependency entropy | external dependency health |
|
|
342
333
|
|
|
343
|
-
Use
|
|
334
|
+
Use `devbooks-entropy-monitor` skill to generate reports and identify refactor opportunities.
|
|
344
335
|
|
|
345
|
-
|
|
336
|
+
Scripts (in `../skills/devbooks-entropy-monitor/scripts/`): `entropy-measure.sh`, `entropy-report.sh`
|
|
346
337
|
|
|
347
338
|
</details>
|
|
348
339
|
|
|
349
340
|
<details>
|
|
350
|
-
<summary><strong>
|
|
341
|
+
<summary><strong>Brownfield project bootstrap</strong></summary>
|
|
351
342
|
|
|
352
343
|
When `<truth-root>` is empty:
|
|
353
344
|
|
|
354
345
|
```
|
|
355
|
-
|
|
346
|
+
Run devbooks-brownfield-bootstrap skill
|
|
356
347
|
```
|
|
357
348
|
|
|
358
349
|
Generates:
|
|
359
|
-
-
|
|
360
|
-
-
|
|
361
|
-
-
|
|
362
|
-
-
|
|
363
|
-
-
|
|
350
|
+
- project profile and glossary
|
|
351
|
+
- baseline specs from existing code
|
|
352
|
+
- minimal verification anchors
|
|
353
|
+
- module dependency map
|
|
354
|
+
- technical debt hotspots
|
|
364
355
|
|
|
365
356
|
</details>
|
|
366
357
|
|
|
367
358
|
<details>
|
|
368
|
-
<summary><strong>Cross-
|
|
359
|
+
<summary><strong>Cross-repo federation</strong></summary>
|
|
369
360
|
|
|
370
|
-
|
|
361
|
+
For multi-repo analysis:
|
|
371
362
|
|
|
372
363
|
```
|
|
373
|
-
|
|
364
|
+
Run devbooks-federation skill
|
|
374
365
|
```
|
|
375
366
|
|
|
376
|
-
Analyzes contracts and dependencies
|
|
367
|
+
Analyzes cross-repo contracts and dependencies to support coordinated changes.
|
|
377
368
|
|
|
378
369
|
</details>
|
|
379
370
|
|
|
380
371
|
<details>
|
|
381
|
-
<summary><strong>MCP
|
|
372
|
+
<summary><strong>MCP auto-detection</strong></summary>
|
|
373
|
+
|
|
374
|
+
DevBooks Skills support graceful MCP (Model Context Protocol) degradation: you can run the full workflow without MCP/CKB; when CKB (Code Knowledge Base) is detected, DevBooks automatically enables graph-based capabilities for more accurate “scope/reference/call chain” analysis.
|
|
375
|
+
|
|
376
|
+
### What is it for?
|
|
382
377
|
|
|
383
|
-
|
|
378
|
+
- **More accurate impact analysis**: upgrades from “file-level guesses” to “symbol references + call graphs”
|
|
379
|
+
- **More focused reviews**: automatically pulls hotspots and prioritizes high-risk areas (tech debt/high churn)
|
|
380
|
+
- **Less manual grep**: reduces noise and repeated confirmation in large repos
|
|
384
381
|
|
|
385
|
-
|
|
382
|
+
### MCP status and behavior
|
|
386
383
|
|
|
387
|
-
|
|
|
388
|
-
|
|
389
|
-
|
|
|
390
|
-
|
|
|
391
|
-
| **Hotspot Discovery** | Identify high-churn, high-coupling code areas | Prioritize refactoring |
|
|
392
|
-
| **Symbol References** | Precisely find all usage locations of symbols | Confirm impact scope before renaming |
|
|
384
|
+
| MCP status | Behavior |
|
|
385
|
+
|----------|------|
|
|
386
|
+
| CKB available | Enhanced mode: symbol-level impact/references/call graph/hotspots (`mcp__ckb__analyzeImpact`, `mcp__ckb__findReferences`, `mcp__ckb__getCallGraph`, `mcp__ckb__getHotspots`) |
|
|
387
|
+
| CKB unavailable | Basic mode: Grep + Glob text search (full functionality, lower precision) |
|
|
393
388
|
|
|
394
|
-
|
|
389
|
+
### Auto detection
|
|
395
390
|
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
| CKB Unavailable | Text search mode: Fall back to Grep + Glob (full functionality, reduced precision) |
|
|
391
|
+
- Skills that depend on MCP call `mcp__ckb__getStatus` first (2s timeout)
|
|
392
|
+
- Timeout/failure → silently falls back to basic mode (non-blocking)
|
|
393
|
+
- No manual “basic/enhanced” switch required
|
|
400
394
|
|
|
401
|
-
|
|
395
|
+
To enable enhanced mode: configure CKB per `docs/Recommended-MCP.md` and run `devbooks-index-bootstrap` skill to generate `index.scip`.
|
|
402
396
|
|
|
403
397
|
</details>
|
|
404
398
|
|
|
405
399
|
<details>
|
|
406
|
-
<summary><strong>Proposal
|
|
400
|
+
<summary><strong>Proposal debate workflow</strong></summary>
|
|
407
401
|
|
|
408
|
-
|
|
402
|
+
For strict proposal review, run the triangle debate:
|
|
409
403
|
|
|
410
404
|
```
|
|
411
|
-
|
|
405
|
+
Run devbooks-proposal-debate-workflow skill
|
|
412
406
|
```
|
|
413
407
|
|
|
414
408
|
Three roles:
|
|
415
|
-
1. **Author**:
|
|
416
|
-
2. **Challenger**:
|
|
417
|
-
3. **Judge**:
|
|
409
|
+
1. **Author**: creates and defends the proposal
|
|
410
|
+
2. **Challenger**: challenges assumptions, finds gaps, identifies risks
|
|
411
|
+
3. **Judge**: makes the final decision and records rationale
|
|
418
412
|
|
|
419
|
-
Decision
|
|
413
|
+
Decision: `Approved`, `Revise`, `Rejected`
|
|
420
414
|
|
|
421
415
|
</details>
|
|
422
416
|
|
|
@@ -431,12 +425,14 @@ DevBooks provides migration scripts to help you transition from other spec-drive
|
|
|
431
425
|
If you're currently using [OpenSpec](https://github.com/Fission-AI/OpenSpec) with an `openspec/` directory:
|
|
432
426
|
|
|
433
427
|
```bash
|
|
434
|
-
#
|
|
435
|
-
|
|
428
|
+
# Using CLI (recommended)
|
|
429
|
+
dev-playbooks migrate --from openspec
|
|
436
430
|
|
|
437
|
-
#
|
|
438
|
-
|
|
439
|
-
|
|
431
|
+
# Preview changes first
|
|
432
|
+
dev-playbooks migrate --from openspec --dry-run
|
|
433
|
+
|
|
434
|
+
# Keep original directory after migration
|
|
435
|
+
dev-playbooks migrate --from openspec --keep-old
|
|
440
436
|
```
|
|
441
437
|
|
|
442
438
|
**What gets migrated:**
|
|
@@ -444,18 +440,21 @@ curl -sL https://raw.githubusercontent.com/ozbombor/dev-playbooks/master/scripts
|
|
|
444
440
|
- `openspec/changes/` → `dev-playbooks/changes/`
|
|
445
441
|
- `openspec/project.md` → `dev-playbooks/project.md`
|
|
446
442
|
- All path references are automatically updated
|
|
443
|
+
- AI tool command directories are cleaned up (`.claude/commands/openspec/`, etc.)
|
|
447
444
|
|
|
448
445
|
### Migrate from GitHub spec-kit
|
|
449
446
|
|
|
450
447
|
If you're using [GitHub spec-kit](https://github.com/github/spec-kit) with `specs/` and `memory/` directories:
|
|
451
448
|
|
|
452
449
|
```bash
|
|
453
|
-
#
|
|
454
|
-
|
|
450
|
+
# Using CLI (recommended)
|
|
451
|
+
dev-playbooks migrate --from speckit
|
|
452
|
+
|
|
453
|
+
# Preview changes first
|
|
454
|
+
dev-playbooks migrate --from speckit --dry-run
|
|
455
455
|
|
|
456
|
-
#
|
|
457
|
-
|
|
458
|
-
./scripts/migrate-from-speckit.sh --project-root . --keep-old # Keep original directories
|
|
456
|
+
# Keep original directories after migration
|
|
457
|
+
dev-playbooks migrate --from speckit --keep-old
|
|
459
458
|
```
|
|
460
459
|
|
|
461
460
|
**Mapping rules:**
|
|
@@ -486,42 +485,34 @@ After migration:
|
|
|
486
485
|
1. Run `dev-playbooks init` to set up DevBooks Skills
|
|
487
486
|
2. Review migrated files in `dev-playbooks/`
|
|
488
487
|
3. Update `verification.md` files with proper AC mappings
|
|
489
|
-
4. Run
|
|
488
|
+
4. Run `devbooks-brownfield-bootstrap` skill if you need baseline specs
|
|
490
489
|
|
|
491
490
|
---
|
|
492
491
|
|
|
493
|
-
##
|
|
492
|
+
## Directory Structure
|
|
494
493
|
|
|
495
494
|
```
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
495
|
+
dev-playbooks/
|
|
496
|
+
├── README.md # This document
|
|
497
|
+
├── constitution.md # Project constitution (GIP principles)
|
|
498
|
+
├── project.md # Project context (tech stack/conventions)
|
|
499
|
+
├── specs/ # Current specs (read-only truth)
|
|
500
|
+
│ ├── _meta/ # Metadata (glossary, project profile)
|
|
501
|
+
│ └── architecture/ # Architecture specs (fitness-rules)
|
|
502
|
+
├── changes/ # Change packages (workspace)
|
|
503
|
+
├── scripts/ # Helper scripts
|
|
504
|
+
└── docs/ # Documentation
|
|
505
|
+
├── devbooks-setup-guide.md # Configuration guide
|
|
506
|
+
├── workflow-diagram.svg # Workflow visualization
|
|
507
|
+
└── Recommended-MCP.md # MCP configuration
|
|
502
508
|
```
|
|
503
509
|
|
|
504
510
|
---
|
|
505
511
|
|
|
506
512
|
## Documentation
|
|
507
513
|
|
|
508
|
-
- [
|
|
509
|
-
- [
|
|
510
|
-
- [MCP Configuration](docs/Recommended-MCP.md)
|
|
511
|
-
- [Integration Template](docs/devbooks-integration-template.md)
|
|
512
|
-
- [Installation Prompt](docs/installation-prompt.md)
|
|
513
|
-
|
|
514
|
-
---
|
|
515
|
-
|
|
516
|
-
## Design Principles
|
|
517
|
-
|
|
518
|
-
| Principle | Description |
|
|
519
|
-
|-----------|-------------|
|
|
520
|
-
| **Protocol First** | Truth/changes/archives written to project, not just in chat |
|
|
521
|
-
| **Anchor First** | Completion defined by tests, static analysis, builds, and evidence |
|
|
522
|
-
| **Role Isolation** | Test Owner and Coder must work in separate conversations |
|
|
523
|
-
| **Truth Source Separation** | `<truth-root>` is read-only truth; `<change-root>` is temporary workspace |
|
|
524
|
-
| **Structure Gating** | Prioritize complexity/coupling/test quality over proxy metrics |
|
|
514
|
+
- [Setup guide](docs/devbooks-setup-guide.md)
|
|
515
|
+
- [MCP configuration recommendations](docs/Recommended-MCP.md)
|
|
525
516
|
|
|
526
517
|
---
|
|
527
518
|
|
package/bin/devbooks.js
CHANGED
|
@@ -427,14 +427,14 @@ ${DEVBOOKS_MARKERS.start}
|
|
|
427
427
|
- Coder 禁止修改 tests/
|
|
428
428
|
- 任何新功能/破坏性变更/架构改动:必须先创建 \`dev-playbooks/changes/<id>/\`
|
|
429
429
|
|
|
430
|
-
##
|
|
430
|
+
## 工作流 Skills
|
|
431
431
|
|
|
432
|
-
|
|
|
432
|
+
| Skill | 说明 |
|
|
433
433
|
|------|------|
|
|
434
|
-
|
|
|
435
|
-
|
|
|
436
|
-
|
|
|
437
|
-
|
|
|
434
|
+
| \`devbooks-proposal-author\` | 创建变更提案 |
|
|
435
|
+
| \`devbooks-design-doc\` | 创建设计文档 |
|
|
436
|
+
| \`devbooks-test-owner / devbooks-coder\` | 执行实现 |
|
|
437
|
+
| \`devbooks-spec-gardener\` | 归档变更包 |
|
|
438
438
|
|
|
439
439
|
${DEVBOOKS_MARKERS.end}
|
|
440
440
|
`;
|
|
@@ -545,14 +545,14 @@ function generateAgentsContent(filename) {
|
|
|
545
545
|
- Test Owner 与 Coder 必须独立对话/独立实例;Coder 禁止修改 tests/。
|
|
546
546
|
- 任何新功能/破坏性变更/架构改动:必须先创建 \`dev-playbooks/changes/<id>/\`。
|
|
547
547
|
|
|
548
|
-
##
|
|
548
|
+
## 工作流 Skills
|
|
549
549
|
|
|
550
|
-
|
|
|
550
|
+
| Skill | 说明 |
|
|
551
551
|
|------|------|
|
|
552
|
-
|
|
|
553
|
-
|
|
|
554
|
-
|
|
|
555
|
-
|
|
|
552
|
+
| \`devbooks-proposal-author\` | 创建变更提案 |
|
|
553
|
+
| \`devbooks-design-doc\` | 创建设计文档 |
|
|
554
|
+
| \`devbooks-test-owner / devbooks-coder\` | 执行实现(test-owner/coder/reviewer) |
|
|
555
|
+
| \`devbooks-spec-gardener\` | 归档变更包 |
|
|
556
556
|
|
|
557
557
|
${DEVBOOKS_MARKERS.end}
|
|
558
558
|
`;
|
package/package.json
CHANGED
|
@@ -48,7 +48,7 @@ When MCP is unavailable, output:
|
|
|
48
48
|
|
|
49
49
|
```
|
|
50
50
|
⚠️ CKB unavailable (timeout or not configured), running in basic mode.
|
|
51
|
-
To enable enhanced features, run
|
|
51
|
+
To enable enhanced features, run devbooks-index-bootstrap skill to build the index.
|
|
52
52
|
```
|
|
53
53
|
```
|
|
54
54
|
|
|
@@ -146,6 +146,6 @@ When MCP is unavailable, output the following notice:
|
|
|
146
146
|
|
|
147
147
|
```
|
|
148
148
|
Warning: CKB unavailable, using directory structure to infer architecture.
|
|
149
|
-
Generated C4 diagrams may not be precise. Recommend running
|
|
149
|
+
Generated C4 diagrams may not be precise. Recommend running devbooks-index-bootstrap skill to generate index.
|
|
150
150
|
```
|
|
151
151
|
|
|
@@ -214,6 +214,6 @@ When MCP is unavailable, output the following notice:
|
|
|
214
214
|
|
|
215
215
|
```
|
|
216
216
|
WARNING: CKB unavailable, skipping hotspot detection.
|
|
217
|
-
To enable hotspot warnings, run
|
|
217
|
+
To enable hotspot warnings, run devbooks-index-bootstrap skill to generate the index.
|
|
218
218
|
```
|
|
219
219
|
|
|
@@ -213,5 +213,5 @@ When MCP is unavailable, output the following notice:
|
|
|
213
213
|
|
|
214
214
|
```
|
|
215
215
|
Warning: CKB index unavailable, architecture check will use basic mode.
|
|
216
|
-
Suggest running
|
|
216
|
+
Suggest running devbooks-index-bootstrap skill to generate index for precise checks.
|
|
217
217
|
```
|
|
@@ -130,6 +130,6 @@ When MCP is unavailable, output the following notice:
|
|
|
130
130
|
|
|
131
131
|
```
|
|
132
132
|
Warning: CKB unavailable, using Grep text search for impact analysis.
|
|
133
|
-
Analysis results may not be precise. Recommend running
|
|
133
|
+
Analysis results may not be precise. Recommend running devbooks-index-bootstrap skill to generate index and re-analyze.
|
|
134
134
|
```
|
|
135
135
|
|
|
@@ -34,7 +34,7 @@ Core values (non-negotiable):
|
|
|
34
34
|
|
|
35
35
|
Design decision identification criteria:
|
|
36
36
|
The following are "design decisions" that require user choice:
|
|
37
|
-
- Naming style (e.g.,
|
|
37
|
+
- Naming style (e.g., skill naming conventions)
|
|
38
38
|
- Directory structure organization
|
|
39
39
|
- Tech stack choices (e.g., npm package naming strategy)
|
|
40
40
|
- Phase partitioning
|
|
@@ -119,16 +119,16 @@ impact_profile:
|
|
|
119
119
|
## Execution Plan (Based on Impact Profile)
|
|
120
120
|
|
|
121
121
|
### Must Execute
|
|
122
|
-
1.
|
|
123
|
-
2.
|
|
124
|
-
3.
|
|
122
|
+
1. `devbooks-proposal-author skill` → proposal.md (proposal exists, skip)
|
|
123
|
+
2. `devbooks-design-doc skill` → design.md (required)
|
|
124
|
+
3. `devbooks-implementation-plan skill` → tasks.md (required)
|
|
125
125
|
|
|
126
126
|
### Recommended (Based on Impact Analysis)
|
|
127
|
-
4.
|
|
128
|
-
5.
|
|
127
|
+
4. `devbooks-spec-contract skill` → specs/** (detected external_api: true)
|
|
128
|
+
5. `devbooks-c4-map skill` → architecture/c4.md (detected architecture_boundary: true)
|
|
129
129
|
|
|
130
130
|
### Optional
|
|
131
|
-
6.
|
|
131
|
+
6. `devbooks-impact-analysis skill` → Deep impact analysis (affected_modules > 5)
|
|
132
132
|
```
|
|
133
133
|
|
|
134
134
|
### Parse Failure Handling (AC-012)
|
|
@@ -143,13 +143,13 @@ Missing items:
|
|
|
143
143
|
- Or impact_profile YAML block is missing
|
|
144
144
|
|
|
145
145
|
Suggested actions:
|
|
146
|
-
1. Run
|
|
147
|
-
2. Or use
|
|
146
|
+
1. Run `devbooks-impact-analysis skill` to generate impact analysis
|
|
147
|
+
2. Or use the appropriate skill directly
|
|
148
148
|
|
|
149
|
-
|
|
150
|
-
-
|
|
151
|
-
-
|
|
152
|
-
-
|
|
149
|
+
Skill list:
|
|
150
|
+
- devbooks-design-doc skill → Design document
|
|
151
|
+
- devbooks-implementation-plan skill → Implementation plan
|
|
152
|
+
- devbooks-spec-contract skill → Specification definition
|
|
153
153
|
```
|
|
154
154
|
|
|
155
155
|
**When YAML parsing fails**:
|
|
@@ -161,7 +161,7 @@ Error: <specific error message>
|
|
|
161
161
|
|
|
162
162
|
Suggested actions:
|
|
163
163
|
1. Check impact_profile YAML format in proposal.md
|
|
164
|
-
2. Or use
|
|
164
|
+
2. Or use the appropriate skill to bypass Router
|
|
165
165
|
```
|
|
166
166
|
|
|
167
167
|
---
|
|
@@ -270,9 +270,9 @@ Trigger signals: User says "prototype first/quick validation/spike/--prototype/t
|
|
|
270
270
|
1. Record key insights learned to `proposal.md` Decision Log
|
|
271
271
|
2. Delete `prototype/` directory
|
|
272
272
|
|
|
273
|
-
## DevBooks
|
|
273
|
+
## DevBooks Skill Adaptation
|
|
274
274
|
|
|
275
|
-
DevBooks uses
|
|
275
|
+
DevBooks uses `devbooks-proposal-author skill`, `devbooks-test-owner/coder skill`, `devbooks-spec-gardener skill` as entry points.
|
|
276
276
|
Route according to A/B/C/D above, artifact paths follow `<truth-root>/<change-root>` mappings in project signposts.
|
|
277
277
|
|
|
278
278
|
---
|
|
@@ -326,7 +326,7 @@ MCP enhancement rules reference: `skills/_shared/mcp-enhancement-template.md`
|
|
|
326
326
|
|
|
327
327
|
1. Call `mcp__ckb__getStatus` (2s timeout)
|
|
328
328
|
2. If CKB available → Mark "graph capabilities activated" in routing suggestions
|
|
329
|
-
3. If timeout or failure → Mark "graph capabilities degraded" in routing suggestions, recommend running
|
|
329
|
+
3. If timeout or failure → Mark "graph capabilities degraded" in routing suggestions, recommend running devbooks-index-bootstrap skill
|
|
330
330
|
|
|
331
331
|
### Enhanced Mode vs Basic Mode
|
|
332
332
|
|
|
@@ -342,5 +342,5 @@ When MCP is unavailable, output the following notice:
|
|
|
342
342
|
|
|
343
343
|
```
|
|
344
344
|
Warning: CKB index not activated, graph capabilities (impact analysis, call graph, etc.) will be degraded.
|
|
345
|
-
Recommend running
|
|
345
|
+
Recommend running devbooks-index-bootstrap skill to generate index for full functionality.
|
|
346
346
|
```
|
|
@@ -187,5 +187,5 @@ When MCP is unavailable, output the following notice:
|
|
|
187
187
|
|
|
188
188
|
```
|
|
189
189
|
Warning: CKB unavailable, using Grep text search for contract reference detection.
|
|
190
|
-
Results may be less precise. Consider running
|
|
190
|
+
Results may be less precise. Consider running devbooks-index-bootstrap skill to generate the index.
|
|
191
191
|
```
|