dev-booster 1.10.0 → 1.12.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 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/ ← 26 expert activators (debug, review, design, deploy...)
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
- | + 14 more | See `.devbooster/MANIFEST.md` |
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,19 +134,35 @@ 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/contexts/` (Continuous save state for conversation continuity)
135
- - `@booster-generated/plans/` (Implementation roadmaps and risk mapping)
136
- - `@booster-generated/troubleshooting/` (Systematic RCA and bug fix logs)
137
- - `@booster-generated/audits/` (Security, accessibility, and performance reports)
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
- ### Manual Triggers
146
+ ### Manual & Shortcut Triggers
140
147
 
141
- While the AI updates these files automatically, you can also take manual control at any time using explicit Chat Triggers:
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
- - **`@SaveState`**: Forces the AI to instantly summarize the current conversation context and update the active booster's state file. Perfect for explicitly bookmarking complex decisions before continuing in a fresh chat.
150
+ #### 👥 Governance Triggers
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`.
144
152
  - **`@SavePattern`**: Instructs the AI to extract a newly resolved technical rule or code pattern and persist it to `.devbooster/rules/USER_PREFERENCES.md`.
145
- - **`@LogTask`**: Tells the AI to capture a pending technical task mentioned in the chat and document it systematically in your operational backlog at `@booster-generated/tasks.md`.
153
+ - **`@LogTask`**: Tells the AI to capture a pending technical task and document it systematically in your backlog at `@booster-generated/tasks.md`.
154
+
155
+ #### ⚡ Booster Shortcut Triggers
156
+ Instead of dragging booster files into the chat, you can instantly activate any booster behavior contract by typing its shortcut trigger:
157
+ - **`@Context`** ➔ Activates `context.md` (Silent Sponge context mapping).
158
+ - **`@Coder`** ➔ Activates `coder.md` (Co-Creative design/writing).
159
+ - **`@Builder`** ➔ Activates `builder.md` (Senior plan audit & execution).
160
+ - **`@Planning`** ➔ Activates `planning.md` (Readiness check).
161
+ - **`@Implementation`** ➔ Activates `implementation.md` (Plan sizing & generation).
162
+ - **`@Atomic`** ➔ Activates `atomic.md` (Surgical step-by-step writing).
163
+ - **`@Review`** ➔ Activates `review.md` (Elite code audit).
164
+ - **`@Advisor`** ➔ Activates `advisor.md` (Kit GPS consultant).
165
+ - *See `.devbooster/rules/TRIGGERS.md` for the complete trigger list.*
146
166
 
147
167
  ---
148
168
 
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "dev-booster",
3
- "version": "1.10.0",
3
+ "version": "1.12.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 ./src/sync-template.js"
7
+ "sync-template": "node ./scripts/sync-template.js"
8
8
  },
9
9
  "bin": {
10
10
  "dev-booster": "./bin/dev-booster.js"