dev-booster 1.15.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 +54 -12
- package/package.json +1 -1
- package/template/.devbooster/MANIFEST.md +28 -17
- package/template/.devbooster/boosters/advisor.md +8 -9
- package/template/.devbooster/boosters/code-audit.md +11 -9
- package/template/.devbooster/boosters/context.md +12 -12
- package/template/.devbooster/boosters/debug.md +6 -6
- package/template/.devbooster/boosters/deploy.md +37 -8
- package/template/.devbooster/boosters/discovery.md +8 -9
- package/template/.devbooster/boosters/global-documentation.md +8 -5
- package/template/.devbooster/boosters/implementation.md +8 -5
- package/template/.devbooster/boosters/internal-documentation.md +8 -5
- package/template/.devbooster/boosters/investigation.md +8 -9
- package/template/.devbooster/boosters/planning.md +8 -9
- package/template/.devbooster/boosters/security.md +10 -9
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
|
-
-
|
|
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)
|
|
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
|
-
|
|
182
|
+
#### 3. Persistence-first booster
|
|
183
|
+
- `save-context.md`
|
|
136
184
|
|
|
137
|
-
|
|
138
|
-
|
|
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
|
@@ -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
|
|
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
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
- `@booster-generated/
|
|
198
|
-
- `@booster-generated/
|
|
199
|
-
- `@booster-generated/
|
|
200
|
-
- `@booster-generated/
|
|
201
|
-
- `@booster-generated/
|
|
202
|
-
- `@booster-generated/
|
|
203
|
-
- `@booster-generated/
|
|
204
|
-
- `@booster-generated/
|
|
205
|
-
|
|
206
|
-
|
|
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
|
-
-
|
|
212
|
-
-
|
|
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
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
-
|
|
73
|
-
-
|
|
74
|
-
|
|
75
|
-
|
|
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
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
-
|
|
85
|
-
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
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
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
-
|
|
50
|
-
-
|
|
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
|
|
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
|
|
59
|
-
4.
|
|
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Γ‘
|
|
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,
|
|
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
|
-
|
|
60
|
-
-
|
|
61
|
-
|
|
62
|
-
|
|
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
|
|
|
@@ -1,5 +1,25 @@
|
|
|
1
|
-
# π BOOSTER: DEPLOY & DEVOPS
|
|
2
|
-
Activating Infrastructure and
|
|
1
|
+
# π BOOSTER: DEPLOY AUDIT & DEVOPS
|
|
2
|
+
Activating Infrastructure and Delivery Audit Specialist.
|
|
3
|
+
|
|
4
|
+
## 0. HARD SAFETY RULE
|
|
5
|
+
This booster is strictly audit-only.
|
|
6
|
+
|
|
7
|
+
It MUST NOT:
|
|
8
|
+
- run deploy commands
|
|
9
|
+
- trigger production, preview, staging, or infrastructure changes
|
|
10
|
+
- execute `vercel`, `netlify`, `firebase deploy`, `gcloud app deploy`, `gcloud run deploy`, `kubectl apply`, `helm upgrade`, `docker compose up`, `docker stack deploy`, `pm2 deploy`, `ssh` deployment flows, or any equivalent command
|
|
11
|
+
- publish packages, release artifacts, or promote builds
|
|
12
|
+
- restart services, mutate servers, or apply infra changes in VPS, cloud, containers, CI/CD, or hosting platforms
|
|
13
|
+
|
|
14
|
+
Even if the user is discussing Vercel, VPS, GCP, AWS, Docker, Kubernetes, CI/CD, or any other platform, this booster must remain in audit mode only.
|
|
15
|
+
|
|
16
|
+
It MAY:
|
|
17
|
+
- inspect configuration files
|
|
18
|
+
- review deploy scripts and CI/CD workflows
|
|
19
|
+
- audit environment assumptions, secrets usage, and rollout risks
|
|
20
|
+
- validate readiness checklists
|
|
21
|
+
- point out missing steps, risky commands, or unsafe rollout patterns
|
|
22
|
+
- suggest the exact commands the user should run manually, without executing them
|
|
3
23
|
|
|
4
24
|
## 1. MANDATORY CONTEXT LOADING
|
|
5
25
|
- `.devbooster/hub/personas/agent_devops-engineer.md`
|
|
@@ -8,12 +28,21 @@ Activating Infrastructure and Continuous Delivery Specialist.
|
|
|
8
28
|
- `.devbooster/hub/personas/skill_bash-linux.md`
|
|
9
29
|
- `.devbooster/hub/personas/skill_server-management.md`
|
|
10
30
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
31
|
+
## 2. OPERATING MODE
|
|
32
|
+
When activated:
|
|
33
|
+
- inspect the relevant deploy configuration, scripts, workflows, or infra files
|
|
34
|
+
- act as a pre-flight auditor only
|
|
35
|
+
- return risks, missing checks, and recommended manual next steps
|
|
36
|
+
- never execute the deploy path itself
|
|
37
|
+
|
|
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."**
|
|
14
46
|
|
|
15
|
-
- **Uniqueness rule:** If the slug already exists in `@booster-generated/deploy/`, generate a new variation of the name instead of overwriting
|
|
16
|
-
- **Notification rule:** After writing, notify the user with: π Registo em `@booster-generated/deploy/<slug>.md`
|
|
17
47
|
|
|
18
|
-
Do NOT update this file silently in the background.
|
|
19
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
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
-
|
|
79
|
-
-
|
|
80
|
-
|
|
81
|
-
|
|
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
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
-
|
|
110
|
-
-
|
|
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
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
-
|
|
86
|
-
-
|
|
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
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
-
|
|
148
|
-
-
|
|
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
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
-
|
|
100
|
-
-
|
|
101
|
-
|
|
102
|
-
|
|
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
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
-
|
|
96
|
-
-
|
|
97
|
-
|
|
98
|
-
|
|
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
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
-
|
|
64
|
-
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
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.
|