dev-booster 1.11.0 → 1.13.0
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 +20 -13
- package/package.json +2 -2
- package/src/index.js +289 -192
- package/template/.devbooster/MANIFEST.md +23 -15
- package/template/.devbooster/boosters/advisor.md +7 -4
- package/template/.devbooster/boosters/code-audit.md +10 -7
- package/template/.devbooster/boosters/coder.md +1 -1
- package/template/.devbooster/boosters/context.md +9 -3
- package/template/.devbooster/boosters/debug.md +7 -4
- package/template/.devbooster/boosters/deploy.md +7 -4
- package/template/.devbooster/boosters/diff-review.md +201 -0
- package/template/.devbooster/boosters/discovery.md +7 -4
- package/template/.devbooster/boosters/global-documentation.md +7 -1
- package/template/.devbooster/boosters/implementation.md +9 -3
- package/template/.devbooster/boosters/internal-documentation.md +8 -2
- package/template/.devbooster/boosters/investigation.md +7 -4
- package/template/.devbooster/boosters/planning.md +7 -4
- package/template/.devbooster/boosters/save-context.md +106 -0
- package/template/.devbooster/boosters/security.md +7 -4
- package/template/.devbooster/hub/scripts/doctor_parser.py +5 -5
- package/template/.devbooster/rules/GUIDE.md +3 -0
- package/template/.devbooster/rules/PROTOCOL.md +1 -1
- package/template/.devbooster/rules/TRIGGERS.md +5 -3
- package/src/sync-template.js +0 -55
package/README.md
CHANGED
|
@@ -3,15 +3,19 @@
|
|
|
3
3
|
> Drop a production-grade AI governance kit into any project — in one command.
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
|
-
npx dev-booster
|
|
6
|
+
npx --yes dev-booster@latest
|
|
7
7
|
```
|
|
8
8
|
|
|
9
9
|
To update an existing kit installation safely:
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
|
-
npx dev-booster --update
|
|
12
|
+
npx --yes dev-booster@latest --update
|
|
13
13
|
```
|
|
14
14
|
|
|
15
|
+
> **Important:** although npm shows `npm i dev-booster`, Dev Booster is intended to be used as a one-off CLI, not as a runtime project dependency.
|
|
16
|
+
> Prefer `npx --yes dev-booster@latest` so you always run the newest published version.
|
|
17
|
+
> If you install it with `npm i dev-booster`, future `npx dev-booster --update` calls may use the locally installed old version and miss newly published boosters.
|
|
18
|
+
|
|
15
19
|
---
|
|
16
20
|
|
|
17
21
|
## What it does
|
|
@@ -32,7 +36,7 @@ After running the command, your project gets:
|
|
|
32
36
|
```
|
|
33
37
|
.devbooster/
|
|
34
38
|
├── MANIFEST.md ← inventory of all agents, skills, and boosters
|
|
35
|
-
├── boosters/ ←
|
|
39
|
+
├── boosters/ ← 30 expert activators (debug, review, design, deploy...)
|
|
36
40
|
├── hub/ ← 40+ skills and operational scripts
|
|
37
41
|
└── rules/
|
|
38
42
|
├── PROTOCOL.md ← governance and conduct rules
|
|
@@ -51,11 +55,11 @@ DEVBOOSTER_INIT.md ← bootstrap orchestrator (read below)
|
|
|
51
55
|
If you want to see exactly what Dev Booster will install or update in your project without actually making any changes, you can use the `--dry-run` flag:
|
|
52
56
|
|
|
53
57
|
```bash
|
|
54
|
-
npx dev-booster --dry-run
|
|
58
|
+
npx --yes dev-booster@latest --dry-run
|
|
55
59
|
```
|
|
56
60
|
For updates:
|
|
57
61
|
```bash
|
|
58
|
-
npx dev-booster update --dry-run
|
|
62
|
+
npx --yes dev-booster@latest --update --dry-run
|
|
59
63
|
```
|
|
60
64
|
|
|
61
65
|
This will run a full simulation of the command and print a detailed report of which files would be created, updated, or preserved, giving you complete peace of mind before executing the real installation.
|
|
@@ -78,7 +82,7 @@ This process only needs to run once. The `DEVBOOSTER_INIT.md` stays in your proj
|
|
|
78
82
|
For later kit updates, use:
|
|
79
83
|
|
|
80
84
|
```bash
|
|
81
|
-
npx dev-booster --update
|
|
85
|
+
npx --yes dev-booster@latest --update
|
|
82
86
|
```
|
|
83
87
|
|
|
84
88
|
This refreshes:
|
|
@@ -110,7 +114,7 @@ Boosters are expert activators you invoke manually during development.
|
|
|
110
114
|
| `discovery.md` | Product brainstorm |
|
|
111
115
|
| `performance.md` | Core Web Vitals / bundle issues |
|
|
112
116
|
| `code-audit.md` | Strict Code Auditor (Syntax, React Doctor) before PR |
|
|
113
|
-
| +
|
|
117
|
+
| + 18 more | See `.devbooster/MANIFEST.md` |
|
|
114
118
|
|
|
115
119
|
The practical activation flow is simple:
|
|
116
120
|
- drag a booster file into the chat
|
|
@@ -130,18 +134,21 @@ Dev Booster operates an internal **Artifact Engine** (Shadow Memory). As booster
|
|
|
130
134
|
|
|
131
135
|
This creates a persistent "paper trail" that ensures the AI never loses context, even if you continue the work in a brand new chat session.
|
|
132
136
|
|
|
133
|
-
Files are systematically organized in the `@booster-generated/` root directory:
|
|
134
|
-
- `@booster-generated/
|
|
135
|
-
- `@booster-generated/
|
|
136
|
-
- `@booster-generated/
|
|
137
|
-
- `@booster-generated/
|
|
137
|
+
Files are systematically organized in the `@booster-generated/` root directory, each booster writing to its own folder:
|
|
138
|
+
- `@booster-generated/context/` (Context assimilation state)
|
|
139
|
+
- `@booster-generated/planning/` (Implementation roadmaps and risk mapping)
|
|
140
|
+
- `@booster-generated/debug/` (Systematic RCA and bug fix logs)
|
|
141
|
+
- `@booster-generated/security/` (Security audit reports)
|
|
142
|
+
- `@booster-generated/code-audit/` (Code audit and diagnostics)
|
|
143
|
+
- `@booster-generated/saved-context/` (Conversation snapshots for chat continuity)
|
|
144
|
+
- `@booster-generated/discovery/`, `@booster-generated/investigation/`, `@booster-generated/advisor/`, `@booster-generated/deploy/`, and more.
|
|
138
145
|
|
|
139
146
|
### Manual & Shortcut Triggers
|
|
140
147
|
|
|
141
148
|
You can take manual control of the kit's governance or instantly route behavior modes at any time using explicit Chat Triggers:
|
|
142
149
|
|
|
143
150
|
#### 👥 Governance Triggers
|
|
144
|
-
- **`@
|
|
151
|
+
- **`@SaveContext`**: Compacta toda a conversa em YAML para continuar em um novo chat sem perda de contexto. Gera em `@booster-generated/saved-context/context-<slug>.yaml`.
|
|
145
152
|
- **`@SavePattern`**: Instructs the AI to extract a newly resolved technical rule or code pattern and persist it to `.devbooster/rules/USER_PREFERENCES.md`.
|
|
146
153
|
- **`@LogTask`**: Tells the AI to capture a pending technical task and document it systematically in your backlog at `@booster-generated/tasks.md`.
|
|
147
154
|
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dev-booster",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.13.0",
|
|
4
4
|
"description": "Reusable AI development kit with manual boosters, governance, and project bootstrap",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
7
|
-
"sync-template": "node ./
|
|
7
|
+
"sync-template": "node ./scripts/sync-template.js"
|
|
8
8
|
},
|
|
9
9
|
"bin": {
|
|
10
10
|
"dev-booster": "./bin/dev-booster.js"
|