dev-booster 1.16.0 β†’ 1.16.1

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
@@ -27,7 +27,7 @@ Unlike generic agent folders, **Dev Booster** uses a manual, activation-first mo
27
27
  - most boosters use lazy loading instead of loading the full kit immediately
28
28
  - context is pulled only when the task, artifact, or pain point actually requires it
29
29
  - each booster has a distinct operational role, instead of behaving like a generic prompt blob
30
- - many boosters act as continuous document generators (Artifact Engine), maintaining structured state files in the background to prevent context loss during long conversations
30
+ - artifact generation is now selective: exploratory boosters stay conversational, while documentation and persistence boosters generate files only at the end or after explicit confirmation
31
31
 
32
32
  This gives the kit a stronger product identity and helps avoid unnecessary context bloat.
33
33
 
@@ -126,29 +126,71 @@ Many boosters now use a two-step flow:
126
126
  1. Activate the mode
127
127
  2. Provide the real task, context, artifact, or pain point so the booster can load only what it needs
128
128
 
129
+ ### Booster artifact behavior at a glance
130
+
131
+ | Booster | Artifact behavior |
132
+ |---|---|
133
+ | `advisor.md` | No artifact by default; save only if the user explicitly asks |
134
+ | `code-audit.md` | Final report artifact only after confirmation; operational diagnostics files may still be created when needed |
135
+ | `context.md` | No artifact by default; save only if the user explicitly asks |
136
+ | `debug.md` | No artifact by default; save only if the user explicitly asks |
137
+ | `deploy.md` | No artifact by default; save only if the user explicitly asks |
138
+ | `discovery.md` | No artifact by default; save only if the user explicitly asks |
139
+ | `global-documentation.md` | Final documentation artifact only after confirmation |
140
+ | `implementation.md` | Final implementation artifact only after confirmation |
141
+ | `internal-documentation.md` | Final documentation artifact only after confirmation |
142
+ | `investigation.md` | No artifact by default; save only if the user explicitly asks |
143
+ | `planning.md` | No artifact by default; save only if the user explicitly asks |
144
+ | `save-context.md` | Persistence-first; generates YAML snapshot after confirmation |
145
+ | `security.md` | No artifact by default; save only if the user explicitly asks |
146
+ | `coder.md` | Does not create local state files |
147
+ | `diff-review.md` | Must not generate files, artifacts, logs, or review documents |
148
+
129
149
  ---
130
150
 
131
151
  ## The Artifact Engine
132
152
 
133
- Dev Booster operates an internal **Artifact Engine** (Shadow Memory). As boosters execute, they automatically generate and update machine-readable `.md` files in the background to track history, audits, and architectural decisions.
153
+ Dev Booster operates an internal **Artifact Engine** (Shadow Memory), but artifact generation is no longer a continuous background behavior for every booster.
154
+
155
+ ### New default behavior
156
+ - exploratory, advisory, and iterative boosters answer in chat first
157
+ - they do **not** create artifacts during normal execution
158
+ - if the result is stable, they may offer to save it at the end of the conversation
159
+ - documentation and persistence boosters may generate a final file only after confirmation
160
+ - no booster should silently keep updating artifact files in the background
161
+
162
+ This keeps the conversation faster while still preserving the option to materialize important outputs in `@booster-generated/` when the user actually wants them.
163
+
164
+ ### Booster artifact policy
165
+
166
+ #### 1. No artifact by default β€” only if the user explicitly asks
167
+ - `advisor.md`
168
+ - `context.md`
169
+ - `debug.md`
170
+ - `deploy.md`
171
+ - `discovery.md`
172
+ - `investigation.md`
173
+ - `planning.md`
174
+ - `security.md`
175
+
176
+ #### 2. Final artifact only after confirmation
177
+ - `code-audit.md`
178
+ - `global-documentation.md`
179
+ - `implementation.md`
180
+ - `internal-documentation.md`
134
181
 
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.
182
+ #### 3. Persistence-first booster
183
+ - `save-context.md`
136
184
 
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.
185
+ ### Artifact locations
186
+ When a user explicitly asks to save or confirms final generation, artifacts are organized under `@booster-generated/`, with each booster writing to its own folder.
145
187
 
146
188
  ### Manual & Shortcut Triggers
147
189
 
148
190
  You can take manual control of the kit's governance or instantly route behavior modes at any time using explicit Chat Triggers:
149
191
 
150
192
  #### πŸ‘₯ 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`.
193
+ - **`@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` apΓ³s confirmaΓ§Γ£o.
152
194
  - **`@SavePattern`**: Instructs the AI to extract a newly resolved technical rule or code pattern and persist it to `.devbooster/rules/USER_PREFERENCES.md`.
153
195
  - **`@LogTask`**: Tells the AI to capture a pending technical task and document it systematically in your backlog at `@booster-generated/tasks.md`.
154
196
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dev-booster",
3
- "version": "1.16.0",
3
+ "version": "1.16.1",
4
4
  "description": "Reusable AI development kit with manual boosters, governance, and project bootstrap",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -186,27 +186,38 @@ When the user asks "How can the kit help?", the Advisor MUST:
186
186
  ---
187
187
 
188
188
  ## πŸ“‚ 7. ARTIFACT ENGINE (SHADOW MEMORY)
189
- Dev Booster acts as a continuous document generator. As boosters execute, they write their history, findings, audits, and implementation plans into structured, machine-readable files. This avoids context loss in long AI conversations and builds a tangible paper trail for the developer.
189
+ Dev Booster no longer treats every booster as a continuous document generator. Artifact creation is now selective and user-controlled: exploratory boosters should stay fast and conversational, while documentation and persistence boosters may generate files only at the end of the flow or after explicit confirmation.
190
190
 
191
191
  **Target Root Path:** `@booster-generated/`
192
192
 
193
- ### Artifact Mapping by Domain:
194
- - `@booster-generated/advisor/` β†’ Managed by `advisor.md`
195
- - `@booster-generated/code-audit/` β†’ Managed by `code-audit.md`
196
- - `@booster-generated/context/` β†’ Managed by `context.md`
197
- - `@booster-generated/debug/` β†’ Managed by `debug.md`
198
- - `@booster-generated/deploy/` β†’ Managed by `deploy.md`
199
- - `@booster-generated/discovery/` β†’ Managed by `discovery.md`
200
- - `@booster-generated/global-documentation/` β†’ Managed by `global-documentation.md`
201
- - `@booster-generated/implementation/` β†’ Managed by `implementation.md`
202
- - `@booster-generated/internal-documentation/` β†’ Managed by `internal-documentation.md`
203
- - `@booster-generated/investigation/` β†’ Managed by `investigation.md`
204
- - `@booster-generated/planning/` β†’ Managed by `planning.md`
205
- - `@booster-generated/saved-context/` β†’ Managed by `save-context.md`
206
- - `@booster-generated/security/` β†’ Managed by `security.md`
193
+ ### Artifact Policy by Booster Type
194
+
195
+ #### A. Optional only on explicit user request
196
+ These boosters must answer in chat first and must NOT create artifacts during normal execution:
197
+ - `advisor.md` β†’ `@booster-generated/advisor/`
198
+ - `context.md` β†’ `@booster-generated/context/`
199
+ - `debug.md` β†’ `@booster-generated/debug/`
200
+ - `deploy.md` β†’ `@booster-generated/deploy/`
201
+ - `discovery.md` β†’ `@booster-generated/discovery/`
202
+ - `investigation.md` β†’ `@booster-generated/investigation/`
203
+ - `planning.md` β†’ `@booster-generated/planning/`
204
+ - `security.md` β†’ `@booster-generated/security/`
205
+
206
+ #### B. Final artifact only after confirmation or explicit save intent
207
+ These boosters may generate a final deliverable artifact, but only after the user confirms the final generation step:
208
+ - `code-audit.md` β†’ `@booster-generated/code-audit/`
209
+ - `global-documentation.md` β†’ `@booster-generated/global-documentation/`
210
+ - `implementation.md` β†’ `@booster-generated/implementation/`
211
+ - `internal-documentation.md` β†’ `@booster-generated/internal-documentation/`
212
+
213
+ #### C. Persistence-first booster
214
+ This booster exists specifically to persist context and may generate its artifact as its primary outcome after confirmation:
215
+ - `save-context.md` β†’ `@booster-generated/saved-context/`
207
216
 
208
217
  ### Behavior Rules:
209
218
  - Each booster writes to its own folder β€” no overlapping paths.
219
+ - Artifacts are never written silently in the background.
210
220
  - Files are never overwritten: if a slug already exists, a variation is generated.
211
- - The AI must notify the user after writing: πŸ“ Registo em `@booster-generated/<booster>/<slug>.md`
212
- - No silent background updates β€” the user is always informed.
221
+ - When an artifact is written, the AI must notify the user after writing.
222
+ - Exploratory and advisory boosters should prefer chat output over file generation.
223
+ - Documentation and persistence boosters should treat artifact creation as a finalization step, not as a continuous side effect.
@@ -66,12 +66,11 @@ Analyze the user's request or the current task and recommend only the best boost
66
66
  - Do NOT expose skills, personas, or agents in the user-facing answer.
67
67
  - Do NOT execute any plan, only advise.
68
68
 
69
- ## ARTIFACT GENERATION
70
- During your execution, create a state file at `@booster-generated/advisor/<slug>.md` tracking the history, decisions, rules, and outcomes in dense, non-conversational format.
71
-
72
- - **Uniqueness rule:** If the slug already exists in `@booster-generated/advisor/`, generate a new variation of the name instead of overwriting
73
- - **Notification rule:** After writing, notify the user with: πŸ“ Registo em `@booster-generated/advisor/<slug>.md`
74
-
75
- Do NOT update this file silently in the background.
76
-
77
- **Reply:** On activation only, use the armed-mode banner above, always following the global language configured for the active LLM/environment. When the user shares an idea or task, read the manifest, classify the need, and recommend the best booster path without executing it.
69
+ ## ARTIFACT POLICY
70
+ - Do NOT create local state files or artifacts during normal advisory execution.
71
+ - Deliver the recommendation directly in chat first.
72
+ - Only if the user explicitly asks to persist the result, generate a summary artifact at `@booster-generated/advisor/<slug>.md`.
73
+ - Never create or update this artifact silently in the background.
74
+ - If the advisory result is stable and the conversation turn is complete, you may end with one short optional offer such as: `If you want, I can save this recommendation as an artifact.`
75
+
76
+ **Reply:** On activation only, use the armed-mode banner above, always following the global language configured for the active LLM/environment. When the user shares an idea or task, read the manifest, classify the need, and recommend the best booster path without executing it. Do not generate artifacts unless the user explicitly asks for one.
@@ -78,12 +78,14 @@ Your response MUST be an **Audit Report**:
78
78
  - [Explicitly state that the full line-by-line list of all warnings/errors is available in `@booster-generated/code-audit/diagnostics-<task-slug>.json` for manual review]
79
79
  - [Waiting for user permission to apply fixes]
80
80
 
81
- ## ARTIFACT GENERATION
82
- During your execution, create a state file at `@booster-generated/code-audit/<slug>.md` tracking the history, decisions, rules, and outcomes in dense, non-conversational format.
83
-
84
- - **Uniqueness rule:** If the slug already exists in `@booster-generated/code-audit/`, generate a new variation of the name instead of overwriting
85
- - **Notification rule:** After writing, notify the user with: πŸ“ Registo em `@booster-generated/code-audit/<slug>.md`
86
-
87
- Do NOT update this file silently in the background.
88
-
89
- **Reply:** On activation only, use the armed-mode banner above and ask for the commit scope. After the user provides the scope, load the necessary scripts, perform the audit, and answer in the global language configured for the active LLM/environment.
81
+ ## ARTIFACT POLICY
82
+ - This booster may generate a final audit artifact, but not during activation or before the audit result is presented.
83
+ - Deliver the audit report in chat first.
84
+ - If React/Next.js diagnostics are relevant, the temporary diagnostics JSON at `@booster-generated/code-audit/diagnostics-<task-slug>.json` may still be generated as an operational working file for the audit flow.
85
+ - Only if the user explicitly asks to persist the final audit summary, generate a report artifact at `@booster-generated/code-audit/<slug>.md`.
86
+ - Do not create or update the final audit artifact silently in the background.
87
+ - **Uniqueness rule:** If the slug already exists in `@booster-generated/code-audit/`, generate a new variation of the name instead of overwriting.
88
+ - **Notification rule:** After writing the final audit artifact, notify the user with: πŸ“ Registo em `@booster-generated/code-audit/<slug>.md`.
89
+ - After presenting a stable audit result, you may end with one short optional offer such as: `If you want, I can save this audit summary as an artifact.`
90
+
91
+ **Reply:** On activation only, use the armed-mode banner above and ask for the commit scope. After the user provides the scope, load the necessary scripts, perform the audit, and answer in the global language configured for the active LLM/environment. Do not generate the final audit artifact unless the user explicitly asks for one.
@@ -43,22 +43,22 @@ When the first real assimilation request arrives:
43
43
  - **NO UNSOLICITED ADVICE:** You MUST NOT suggest refactorings, point out technical debt, or critique the existing architecture/clean code patterns.
44
44
  - **ZERO CODE OUTPUT:** Your role is purely receptive and structural.
45
45
  - **MEMORIZATION ONLY:** Read the files, map their imports, trace the data flow (inputs, outputs, side effects, APIs), and store this representation in your active context memory.
46
- ## ARTIFACT GENERATION
47
- During your execution, create a state file at `@booster-generated/context/<slug>.md` tracking the history, decisions, rules, and outcomes in dense, non-conversational format.
48
-
49
- - **Uniqueness rule:** If the slug already exists in `@booster-generated/context/`, generate a new variation of the name instead of overwriting
50
- - **Notification rule:** After writing, notify the user with: πŸ“ Registo em `@booster-generated/context/<slug>.md`
51
-
52
- Do NOT update this file silently in the background.
46
+ ## ARTIFACT POLICY
47
+ - Do NOT create local state files or artifacts during normal context assimilation.
48
+ - Keep the mapped context in active memory and acknowledge completion in chat only.
49
+ - Only if the user explicitly asks to persist the mapped context, generate a summary artifact at `@booster-generated/context/<slug>.md`.
50
+ - Never create or update this artifact silently in the background.
51
+ - If the mapping is complete and stable, you may end with one short optional offer such as: `If you want, I can save this mapped context as an artifact.`
53
52
 
54
53
  ## 3. CONFIRMATION PROTOCOL
55
- Once you have fully read, parsed, mapped the flow, AND updated the state backup file:
54
+ Once you have fully read, parsed, and mapped the flow:
56
55
  1. Clear your output of any technical jargon, file contents, code snippets, or rules explanations.
57
56
  2. Respond with an ultra-short, highly professional 1-to-2 line acknowledgment in the user's active conversation language.
58
- 3. Confirm that the context is fully mapped with the artifact available at the registered path.
59
- 4. **NO PROACTIVITY:** Do NOT ask follow-up questions, do NOT suggest next steps, and do NOT ask what to do next. Simply state that the context has been absorbed and wait silently for the user's next command.
57
+ 3. Confirm that the context is fully mapped and retained in active memory.
58
+ 4. You MAY add one short optional artifact offer, but only after the acknowledgment and only if the mapping is stable.
59
+ 5. **NO PROACTIVITY:** Do NOT suggest next steps and do NOT ask what to do next. Apart from the optional artifact offer, simply state that the context has been absorbed and wait silently for the user's next command.
60
60
 
61
61
  Example response:
62
- > *"Fluxo mapeado com sucesso. O contexto tΓ©cnico estΓ‘ armazenado na memΓ³ria e registado em `@booster-generated/context/<slug>.md`."*
62
+ > *"Fluxo mapeado com sucesso. O contexto tΓ©cnico estΓ‘ retido na memΓ³ria ativa. Se quiser, posso salvar esse mapeamento como artefato."*
63
63
 
64
- **Reply:** On activation only, use the armed-mode banner above. On the first real task, load the allowed personas silently, read the files, create/update the context backup file, map the flow internally, and reply with the non-proactive, ultra-short acknowledgment protocol.
64
+ **Reply:** On activation only, use the armed-mode banner above. On the first real task, load the allowed personas silently, read the files, map the flow internally, and reply with the ultra-short acknowledgment protocol. Do not generate artifacts unless the user explicitly asks for one.
@@ -53,11 +53,11 @@ Your response MUST use this exact format:
53
53
  ---
54
54
 
55
55
  **Response: "Elite Debugger Mode Activated. Diagnostic tools and Hypothesis engine online. Please provide the error logs and where it's happening."**
56
- ## ARTIFACT GENERATION
57
- During your execution, create a state file at `@booster-generated/debug/<slug>.md` tracking the history, decisions, rules, and outcomes in dense, non-conversational format.
58
56
 
59
- - **Uniqueness rule:** If the slug already exists in `@booster-generated/debug/`, generate a new variation of the name instead of overwriting
60
- - **Notification rule:** After writing, notify the user with: πŸ“ Registo em `@booster-generated/debug/<slug>.md`
61
-
62
- Do NOT update this file silently in the background.
57
+ ## ARTIFACT POLICY
58
+ - Do NOT create local state files or artifacts during normal debug execution.
59
+ - Keep the debugging loop focused on reproducing, isolating, and fixing the issue.
60
+ - Only if the user explicitly asks to persist the result, generate a summary artifact at `@booster-generated/debug/<slug>.md`.
61
+ - Never create or update this artifact silently in the background.
62
+ - After the root cause and fix are stable, you may end with one short optional offer such as: `If you want, I can save this debug report as an artifact.`
63
63
 
@@ -35,7 +35,14 @@ When activated:
35
35
  - return risks, missing checks, and recommended manual next steps
36
36
  - never execute the deploy path itself
37
37
 
38
- **Reply: "Deploy Audit Mode Activated. I can audit readiness, scripts, infra, and rollout risks, but I will not run any deployment command."**
38
+ ## 3. ARTIFACT POLICY
39
+ - Do NOT create local state files or artifacts during normal deploy auditing.
40
+ - Deliver the readiness audit directly in chat first.
41
+ - Only if the user explicitly asks to persist the result, generate a deploy audit artifact at `@booster-generated/deploy/<slug>.md`.
42
+ - Do not create or update this artifact silently in the background.
43
+ - After presenting a stable deploy audit, you may end with one short optional offer such as: `If you want, I can save this deploy audit as an artifact.`
44
+
45
+ **Reply: "Deploy Audit Mode Activated. I can audit readiness, scripts, infra, and rollout risks, but I will not run any deployment command. I will not generate artifacts unless you ask me to save the final audit."**
39
46
 
40
47
 
41
48
 
@@ -72,12 +72,11 @@ After presenting the options, ask the user:
72
72
  1. Which direction aligns best with your current priority?
73
73
  2. Are there any specific constraints we should consider for the chosen path?
74
74
 
75
- ## ARTIFACT GENERATION
76
- During your execution, create a state file at `@booster-generated/discovery/<slug>.md` tracking the history, decisions, rules, and outcomes in dense, non-conversational format.
77
-
78
- - **Uniqueness rule:** If the slug already exists in `@booster-generated/discovery/`, generate a new variation of the name instead of overwriting
79
- - **Notification rule:** After writing, notify the user with: πŸ“ Registo em `@booster-generated/discovery/<slug>.md`
80
-
81
- Do NOT update this file silently in the background.
82
-
83
- **Reply:** On activation only, use the armed-mode banner above and open the conversation. After the first real idea arrives, load the minimum required discovery context and continue with the discovery flow in the global language configured for the active LLM/environment.
75
+ ## ARTIFACT POLICY
76
+ - Do NOT create local state files or artifacts during normal discovery execution.
77
+ - Keep brainstorming fast and conversational.
78
+ - Only if the user explicitly asks to persist the result, generate a summary artifact at `@booster-generated/discovery/<slug>.md`.
79
+ - Never create or update this artifact silently in the background.
80
+ - After presenting a stable discovery result, you may end with one short optional offer such as: `If you want, I can consolidate this discovery into an artifact.`
81
+
82
+ **Reply:** On activation only, use the armed-mode banner above and open the conversation. After the first real idea arrives, load the minimum required discovery context and continue with the discovery flow in the global language configured for the active LLM/environment. Do not generate artifacts unless the user explicitly asks for one.
@@ -103,10 +103,13 @@ Use these 17 sections in this exact order:
103
103
  - If the context is ambiguous, state the ambiguity before writing.
104
104
  - Do NOT invent flows, contracts, or business rules that were not established.
105
105
 
106
- ## ARTIFACT GENERATION
107
- After generating the documentation, a state file is created at `@booster-generated/global-documentation/<feature-context>-global-documentation.md`.
108
-
109
- - **Uniqueness rule:** If a file with the same slug already exists in `@booster-generated/global-documentation/`, generate a new variation of the name instead of overwriting
110
- - **Notification rule:** After writing, notify the user with: πŸ“ Documento criado em `@booster-generated/global-documentation/<feature-context>-global-documentation.md`
106
+ ## ARTIFACT POLICY
107
+ - This booster may generate a final documentation artifact, but never during the initial synthesis or confirmation phase.
108
+ - First, summarize the current context in chat and confirm scope with the user.
109
+ - After the user confirms documentation generation, produce the final artifact at `@booster-generated/global-documentation/<feature-context>-global-documentation.md`.
110
+ - Do not create or update this artifact silently in the background.
111
+ - **Uniqueness rule:** If a file with the same slug already exists in `@booster-generated/global-documentation/`, generate a new variation of the name instead of overwriting.
112
+ - **Notification rule:** After writing, notify the user with: πŸ“ Documento criado em `@booster-generated/global-documentation/<feature-context>-global-documentation.md`.
113
+ - If the documentation was discussed in chat but not yet generated as a file, end with a short confirmation prompt asking whether the user wants the artifact generated now.
111
114
 
112
115
  **Reply:** On activation only, review the current conversation context, summarize it, and ask if you may proceed with the documentation. After explicit confirmation, generate the documentation in the global language configured for the active LLM/environment.
@@ -79,10 +79,13 @@ Evaluate the task complexity and select the corresponding template file:
79
79
  3. **Load Template:** After confirmation, read the full content of the selected template file.
80
80
  4. **Generate:** Apply the loaded template rules to the current context and produce the final plan.
81
81
 
82
- ## ARTIFACT GENERATION
83
- After generating the implementation plan, a state file is created at `@booster-generated/implementation/<task>-implementation.md`.
84
-
85
- - **Uniqueness rule:** If a file with the same slug already exists in `@booster-generated/implementation/`, generate a new variation of the name instead of overwriting
86
- - **Notification rule:** After writing, notify the user with: πŸ“ Plano criado em `@booster-generated/implementation/<task>-implementation.md`
82
+ ## ARTIFACT POLICY
83
+ - This booster may generate a final implementation artifact, but never during the exploratory or sizing phase.
84
+ - First, deliver the context summary, selected template, and rationale in chat.
85
+ - After the user confirms the plan generation, produce the final artifact at `@booster-generated/implementation/<task>-implementation.md`.
86
+ - Do not create or update this artifact silently in the background.
87
+ - **Uniqueness rule:** If a file with the same slug already exists in `@booster-generated/implementation/`, generate a new variation of the name instead of overwriting.
88
+ - **Notification rule:** After writing, notify the user with: πŸ“ Plano criado em `@booster-generated/implementation/<task>-implementation.md`.
89
+ - If the implementation plan was discussed in chat but not yet generated as a file, end with a short confirmation prompt asking whether the user wants the artifact generated now.
87
90
 
88
91
  **Reply:** On activation only, review the current conversation context, summarize it, select `simple`, `standard`, or `heavy`, explain why, and ask if you may proceed. After explicit confirmation, load the selected template and generate the implementation plan in the global language configured for the active LLM/environment.
@@ -141,10 +141,13 @@ The result of this booster should be:
141
141
  - A repository-specific internal documentation file.
142
142
  - A concise completion report in chat with the artifact path and any unresolved gaps.
143
143
 
144
- ## ARTIFACT GENERATION
145
- After generating the documentation, a state file is created at `@booster-generated/internal-documentation/internal-project-documentation.md`.
146
-
147
- - **Uniqueness rule:** If a file with the same slug already exists in `@booster-generated/internal-documentation/`, generate a new variation of the name instead of overwriting
148
- - **Notification rule:** After writing, notify the user with: πŸ“ Documento criado em `@booster-generated/internal-documentation/internal-project-documentation.md`
144
+ ## ARTIFACT POLICY
145
+ - This booster may generate a final internal documentation artifact, but never during the initial review or confirmation phase.
146
+ - First, summarize the current context, scope, and gaps in chat.
147
+ - After the user confirms documentation generation, produce the final artifact at `@booster-generated/internal-documentation/internal-project-documentation.md`.
148
+ - Do not create or update this artifact silently in the background.
149
+ - **Uniqueness rule:** If a file with the same slug already exists in `@booster-generated/internal-documentation/`, generate a new variation of the name instead of overwriting.
150
+ - **Notification rule:** After writing, notify the user with: πŸ“ Documento criado em `@booster-generated/internal-documentation/internal-project-documentation.md`.
151
+ - If the documentation was discussed in chat but not yet generated as a file, end with a short confirmation prompt asking whether the user wants the artifact generated now.
149
152
 
150
153
  **Reply:** On activation only, review the current conversation context, summarize it, identify scope and gaps, and ask if you may proceed with internal documentation. After explicit confirmation, scan the repository and generate the documentation in the global language configured for the active LLM/environment.
@@ -93,12 +93,11 @@ Organize your response as follows:
93
93
  - Initially, analyze ONLY the `package.json` to understand the project structure and stack.
94
94
  - Do NOT be proactive in execution. Your goal is certainty and lack of ambiguity.
95
95
 
96
- ## ARTIFACT GENERATION
97
- During your execution, create a state file at `@booster-generated/investigation/<slug>.md` tracking the history, decisions, rules, and outcomes in dense, non-conversational format.
98
-
99
- - **Uniqueness rule:** If the slug already exists in `@booster-generated/investigation/`, generate a new variation of the name instead of overwriting
100
- - **Notification rule:** After writing, notify the user with: πŸ“ Registo em `@booster-generated/investigation/<slug>.md`
101
-
102
- Do NOT update this file silently in the background.
103
-
104
- **Reply:** On activation only, use the armed-mode banner above with a professional investigation opening. After the first real request arrives, load the minimum required investigation context and continue in the global language configured for the active LLM/environment.
96
+ ## ARTIFACT POLICY
97
+ - Do NOT create local state files or artifacts during normal investigation execution.
98
+ - Deliver the investigation findings directly in chat first.
99
+ - Only if the user explicitly asks to persist the result, generate a summary artifact at `@booster-generated/investigation/<slug>.md`.
100
+ - Never create or update this artifact silently in the background.
101
+ - After a stable investigation result, you may end with one short optional offer such as: `If you want, I can save this investigation as an artifact.`
102
+
103
+ **Reply:** On activation only, use the armed-mode banner above with a professional investigation opening. After the first real request arrives, load the minimum required investigation context and continue in the global language configured for the active LLM/environment. Do not generate artifacts unless the user explicitly asks for one.
@@ -89,12 +89,11 @@ On activation only:
89
89
 
90
90
  Only after the user confirms should this booster continue the alignment process and determine whether the task is ready for implementation.
91
91
 
92
- ## ARTIFACT GENERATION
93
- During your execution, create a state file at `@booster-generated/planning/<slug>.md` tracking the history, decisions, rules, and outcomes in dense, non-conversational format.
94
-
95
- - **Uniqueness rule:** If the slug already exists in `@booster-generated/planning/`, generate a new variation of the name instead of overwriting
96
- - **Notification rule:** After writing, notify the user with: πŸ“ Registo em `@booster-generated/planning/<slug>.md`
97
-
98
- Do NOT update this file silently in the background.
99
-
100
- **Reply:** On activation only, review the current conversation context, summarize what is already defined, identify risks and gaps, and ask whether the user wants to proceed with planner alignment. Do not emit the final readiness verdict until the user confirms. Always answer in the global language configured for the active LLM/environment.
92
+ ## ARTIFACT POLICY
93
+ - Do NOT create local state files or artifacts during normal planning alignment.
94
+ - Deliver the readiness analysis directly in chat first.
95
+ - Only if the user explicitly asks to persist the result, generate a summary artifact at `@booster-generated/planning/<slug>.md`.
96
+ - Never create or update this artifact silently in the background.
97
+ - After a stable readiness conclusion, you may end with one short optional offer such as: `If you want, I can save this planning analysis as an artifact.`
98
+
99
+ **Reply:** On activation only, review the current conversation context, summarize what is already defined, identify risks and gaps, and ask whether the user wants to proceed with planner alignment. Do not emit the final readiness verdict until the user confirms. Always answer in the global language configured for the active LLM/environment. Do not generate artifacts unless the user explicitly asks for one.
@@ -57,12 +57,13 @@ Rules:
57
57
  - `.devbooster/hub/skills/vulnerability-scanner/SKILL.md`
58
58
  - `.devbooster/hub/skills/red-team-tactics/SKILL.md`
59
59
 
60
- ## ARTIFACT GENERATION
61
- During your execution, create a state file at `@booster-generated/security/<slug>.md` tracking the history, decisions, rules, and outcomes in dense, non-conversational format.
62
-
63
- - **Uniqueness rule:** If the slug already exists in `@booster-generated/security/`, generate a new variation of the name instead of overwriting
64
- - **Notification rule:** After writing, notify the user with: πŸ“ Registo em `@booster-generated/security/<slug>.md`
65
-
66
- Do NOT update this file silently in the background.
67
-
68
- **Reply:** On activation only, use the armed-mode banner above. On the first real task, load the minimum required security context based on the user's pain, then execute.
60
+ ## ARTIFACT POLICY
61
+ - Do NOT create local state files or artifacts during the initial security analysis.
62
+ - Deliver the security findings directly in chat first.
63
+ - Only if the user explicitly asks to persist the result, generate a security report artifact at `@booster-generated/security/<slug>.md`.
64
+ - Do not create or update this artifact silently in the background.
65
+ - After presenting a stable security result, you may end with one short optional offer such as: `If you want, I can save this security report as an artifact.`
66
+ - **Uniqueness rule:** If the slug already exists in `@booster-generated/security/`, generate a new variation of the name instead of overwriting.
67
+ - **Notification rule:** After writing, notify the user with: πŸ“ Registo em `@booster-generated/security/<slug>.md`.
68
+
69
+ **Reply:** On activation only, use the armed-mode banner above. On the first real task, load the minimum required security context based on the user's pain, then execute. Do not generate artifacts unless the user explicitly asks for one.