prizmkit 1.1.77 → 1.1.78
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/bundled/VERSION.json +3 -3
- package/bundled/skills/_metadata.json +1 -1
- package/bundled/skills/bugfix-pipeline-launcher/SKILL.md +11 -3
- package/bundled/skills/feature-pipeline-launcher/SKILL.md +12 -4
- package/bundled/skills/refactor-pipeline-launcher/SKILL.md +13 -3
- package/bundled/skills-windows/bugfix-pipeline-launcher/SKILL.md +12 -3
- package/bundled/skills-windows/feature-pipeline-launcher/SKILL.md +12 -3
- package/bundled/skills-windows/refactor-pipeline-launcher/SKILL.md +11 -2
- package/package.json +1 -1
package/bundled/VERSION.json
CHANGED
|
@@ -152,7 +152,7 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
152
152
|
|
|
153
153
|
**Question 4 — Advanced config?** (multiSelect: false):
|
|
154
154
|
- No (default) — Use defaults for session timeout and failure behavior
|
|
155
|
-
- Yes — Configure session timeout
|
|
155
|
+
- Yes — Configure session timeout, stop-on-failure, and reasoning effort options
|
|
156
156
|
|
|
157
157
|
Note: Bug filter defaults to all bugs (by severity order). Default Critic to Off unless bugs have `severity: "critical"` or `severity: "high"` (in which case default to On). If the user selects "Other" on any option, handle their custom input.
|
|
158
158
|
|
|
@@ -172,6 +172,14 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
172
172
|
- No (default) — Skip deployment after pipeline completes
|
|
173
173
|
- Yes — Run /prizmkit-deploy automatically after all bugs fixed successfully (`ENABLE_DEPLOY=1`). Deployment is blocked if any bug was not fixed (status not 'completed', 'skipped', or 'needs_info').
|
|
174
174
|
|
|
175
|
+
**Question 4 — Reasoning effort** (multiSelect: false):
|
|
176
|
+
- Default (none) — Use CLI default
|
|
177
|
+
- low — Minimize reasoning, fastest output (`PRIZMKIT_EFFORT=low`)
|
|
178
|
+
- medium — Moderate reasoning (`PRIZMKIT_EFFORT=medium`)
|
|
179
|
+
- high — Thorough reasoning for complex tasks (`PRIZMKIT_EFFORT=high`)
|
|
180
|
+
- xhigh — Extensive reasoning (`PRIZMKIT_EFFORT=xhigh`)
|
|
181
|
+
- max — Maximum reasoning, Claude Code only (`PRIZMKIT_EFFORT=max`)
|
|
182
|
+
|
|
175
183
|
**Environment variable mapping** (for translating user responses → env vars):
|
|
176
184
|
|
|
177
185
|
| Config choice | Environment variable |
|
|
@@ -183,13 +191,13 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
183
191
|
| Timeout: value | `SESSION_TIMEOUT=<seconds>` |
|
|
184
192
|
| Stop on failure: On | `STOP_ON_FAILURE=1` |
|
|
185
193
|
| Deploy: Yes | `ENABLE_DEPLOY=1` |
|
|
194
|
+
| Effort: value | `PRIZMKIT_EFFORT=<value>` |
|
|
186
195
|
|
|
187
196
|
**Advanced environment variables** (not exposed in interactive menu, pass via `--env`):
|
|
188
197
|
|
|
189
198
|
| Variable | Default | Purpose |
|
|
190
199
|
|----------|---------|---------|
|
|
191
200
|
| `MODEL` | (none) | AI model override (e.g. `claude-opus-4.6`) |
|
|
192
|
-
| `PRIZMKIT_EFFORT` | (none) | AI reasoning effort: `low`\|`medium`\|`high`\|`xhigh`\|`max` (max = Claude Code only) |
|
|
193
201
|
| `AUTO_PUSH` | `0` | Auto-push to remote after successful bug fix (`1` to enable) |
|
|
194
202
|
| `DEV_BRANCH` | auto-generated | Custom dev branch name (default: `bugfix/pipeline-{run_id}`) |
|
|
195
203
|
| `HEARTBEAT_INTERVAL` | `30` | Heartbeat log interval in seconds |
|
|
@@ -208,7 +216,7 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
208
216
|
```
|
|
209
217
|
With all options:
|
|
210
218
|
```bash
|
|
211
|
-
VERBOSE=1 MAX_RETRIES=5 SESSION_TIMEOUT=3600 ENABLE_DEPLOY=1 \
|
|
219
|
+
VERBOSE=1 MAX_RETRIES=5 SESSION_TIMEOUT=3600 ENABLE_DEPLOY=1 PRIZMKIT_EFFORT=high \
|
|
212
220
|
.prizmkit/dev-pipeline/run-bugfix.sh run .prizmkit/plans/bug-fix-list.json
|
|
213
221
|
```
|
|
214
222
|
|
|
@@ -169,7 +169,7 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
169
169
|
|
|
170
170
|
**Question 4 — Advanced config?** (multiSelect: false):
|
|
171
171
|
- No (default) — Use defaults for session timeout and failure behavior
|
|
172
|
-
- Yes — Configure session timeout, stop-on-failure,
|
|
172
|
+
- Yes — Configure session timeout, stop-on-failure, deploy-after-completion, and reasoning effort options
|
|
173
173
|
|
|
174
174
|
Default Critic to Off unless features have `estimated_complexity: "high"` or above (in which case default to On).
|
|
175
175
|
|
|
@@ -189,6 +189,14 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
189
189
|
- No (default) — Skip deployment after pipeline completes
|
|
190
190
|
- Yes — Run /prizmkit-deploy automatically after all features complete successfully (`ENABLE_DEPLOY=1`). Deployment is blocked if any feature did not complete successfully (status not 'completed' or manually 'skipped').
|
|
191
191
|
|
|
192
|
+
**Question 4 — Reasoning effort** (multiSelect: false):
|
|
193
|
+
- Default (none) — Use CLI default
|
|
194
|
+
- low — Minimize reasoning, fastest output (`PRIZMKIT_EFFORT=low`)
|
|
195
|
+
- medium — Moderate reasoning (`PRIZMKIT_EFFORT=medium`)
|
|
196
|
+
- high — Thorough reasoning for complex tasks (`PRIZMKIT_EFFORT=high`)
|
|
197
|
+
- xhigh — Extensive reasoning (`PRIZMKIT_EFFORT=xhigh`)
|
|
198
|
+
- max — Maximum reasoning, Claude Code only (`PRIZMKIT_EFFORT=max`)
|
|
199
|
+
|
|
192
200
|
**Environment variable mapping** (for translating user responses → env vars):
|
|
193
201
|
|
|
194
202
|
| Config choice | Environment variable |
|
|
@@ -200,13 +208,13 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
200
208
|
| Timeout: value | `SESSION_TIMEOUT=<seconds>` |
|
|
201
209
|
| Stop on failure: On | `STOP_ON_FAILURE=1` |
|
|
202
210
|
| Deploy: Yes | `ENABLE_DEPLOY=1` |
|
|
211
|
+
| Effort: value | `PRIZMKIT_EFFORT=<value>` |
|
|
203
212
|
|
|
204
213
|
**Advanced environment variables** (not exposed in interactive menu, pass via `--env`):
|
|
205
214
|
|
|
206
215
|
| Variable | Default | Purpose |
|
|
207
216
|
|----------|---------|---------|
|
|
208
217
|
| `MODEL` | (none) | AI model override (e.g. `claude-opus-4.6`) |
|
|
209
|
-
| `PRIZMKIT_EFFORT` | (none) | AI reasoning effort: `low`\|`medium`\|`high`\|`xhigh`\|`max` (max = Claude Code only) |
|
|
210
218
|
| `AUTO_PUSH` | `0` | Auto-push to remote after successful feature (`1` to enable) |
|
|
211
219
|
| `DEV_BRANCH` | auto-generated | Custom dev branch name (default: `dev/{feature_id}-YYYYMMDDHHmm`) |
|
|
212
220
|
| `HEARTBEAT_INTERVAL` | `30` | Heartbeat log interval in seconds |
|
|
@@ -226,7 +234,7 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
226
234
|
```
|
|
227
235
|
With all options:
|
|
228
236
|
```bash
|
|
229
|
-
VERBOSE=1 ENABLE_CRITIC=true MAX_RETRIES=5 SESSION_TIMEOUT=3600 ENABLE_DEPLOY=1 \
|
|
237
|
+
VERBOSE=1 ENABLE_CRITIC=true MAX_RETRIES=5 SESSION_TIMEOUT=3600 ENABLE_DEPLOY=1 PRIZMKIT_EFFORT=high \
|
|
230
238
|
.prizmkit/dev-pipeline/run-feature.sh run .prizmkit/plans/feature-list.json --features F-001:F-005
|
|
231
239
|
```
|
|
232
240
|
|
|
@@ -237,7 +245,7 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
237
245
|
With all options:
|
|
238
246
|
```bash
|
|
239
247
|
.prizmkit/dev-pipeline/launch-feature-daemon.sh start .prizmkit/plans/feature-list.json --features F-001:F-005 \
|
|
240
|
-
--env "VERBOSE=1 ENABLE_CRITIC=true MAX_RETRIES=5 ENABLE_DEPLOY=1"
|
|
248
|
+
--env "VERBOSE=1 ENABLE_CRITIC=true MAX_RETRIES=5 ENABLE_DEPLOY=1 PRIZMKIT_EFFORT=high"
|
|
241
249
|
```
|
|
242
250
|
|
|
243
251
|
**Manual mode**: Print the assembled command(s) and **stop here**. Do not execute anything. Do not proceed to step 8.
|
|
@@ -170,7 +170,7 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
170
170
|
|
|
171
171
|
**Question 4 — Advanced config?** (multiSelect: false):
|
|
172
172
|
- No (default) — Use defaults for critic review, session timeout, and failure behavior
|
|
173
|
-
- Yes — Configure critic review, session timeout,
|
|
173
|
+
- Yes — Configure critic review, session timeout, stop-on-failure, and reasoning effort options
|
|
174
174
|
|
|
175
175
|
Note: Refactor filter defaults to all refactor items (by priority order). If the user selects "Other" on any option, handle their custom input.
|
|
176
176
|
|
|
@@ -196,6 +196,16 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
196
196
|
|
|
197
197
|
Default Critic to Off unless refactor items have `priority: "critical"` (in which case default to On).
|
|
198
198
|
|
|
199
|
+
**If advanced config was selected, also ask about reasoning effort** in a follow-up `AskUserQuestion` call:
|
|
200
|
+
|
|
201
|
+
**Question — Reasoning effort** (multiSelect: false):
|
|
202
|
+
- Default (none) — Use CLI default
|
|
203
|
+
- low — Minimize reasoning, fastest output (`PRIZMKIT_EFFORT=low`)
|
|
204
|
+
- medium — Moderate reasoning (`PRIZMKIT_EFFORT=medium`)
|
|
205
|
+
- high — Thorough reasoning for complex tasks (`PRIZMKIT_EFFORT=high`)
|
|
206
|
+
- xhigh — Extensive reasoning (`PRIZMKIT_EFFORT=xhigh`)
|
|
207
|
+
- max — Maximum reasoning, Claude Code only (`PRIZMKIT_EFFORT=max`)
|
|
208
|
+
|
|
199
209
|
**Environment variable mapping** (for translating user responses → env vars):
|
|
200
210
|
|
|
201
211
|
| Config choice | Environment variable |
|
|
@@ -209,13 +219,13 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
209
219
|
| Timeout: value | `SESSION_TIMEOUT=<seconds>` |
|
|
210
220
|
| Stop on failure: On | `STOP_ON_FAILURE=1` |
|
|
211
221
|
| Deploy: Yes | `ENABLE_DEPLOY=1` |
|
|
222
|
+
| Effort: value | `PRIZMKIT_EFFORT=<value>` |
|
|
212
223
|
|
|
213
224
|
**Advanced environment variables** (not exposed in interactive menu, pass via `--env`):
|
|
214
225
|
|
|
215
226
|
| Variable | Default | Purpose |
|
|
216
227
|
|----------|---------|---------|
|
|
217
228
|
| `MODEL` | (none) | AI model override (e.g. `claude-opus-4.6`) |
|
|
218
|
-
| `PRIZMKIT_EFFORT` | (none) | AI reasoning effort: `low`\|`medium`\|`high`\|`xhigh`\|`max` (max = Claude Code only) |
|
|
219
229
|
| `AUTO_PUSH` | `0` | Auto-push to remote after successful refactor (`1` to enable) |
|
|
220
230
|
| `DEV_BRANCH` | auto-generated | Custom dev branch name (default: `refactor/pipeline-{run_id}`) |
|
|
221
231
|
| `HEARTBEAT_INTERVAL` | `30` | Heartbeat log interval in seconds |
|
|
@@ -234,7 +244,7 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
234
244
|
```
|
|
235
245
|
With all options:
|
|
236
246
|
```bash
|
|
237
|
-
VERBOSE=1 STRICT_BEHAVIOR_CHECK=1 MAX_RETRIES=5 SESSION_TIMEOUT=3600 ENABLE_DEPLOY=1 \
|
|
247
|
+
VERBOSE=1 STRICT_BEHAVIOR_CHECK=1 MAX_RETRIES=5 SESSION_TIMEOUT=3600 ENABLE_DEPLOY=1 PRIZMKIT_EFFORT=high \
|
|
238
248
|
.prizmkit/dev-pipeline/run-refactor.sh run .prizmkit/plans/refactor-list.json
|
|
239
249
|
```
|
|
240
250
|
|
|
@@ -177,7 +177,7 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
177
177
|
|
|
178
178
|
**Question 4 — Advanced config?** (multiSelect: false):
|
|
179
179
|
- No (default) — Use defaults for session timeout and failure behavior
|
|
180
|
-
- Yes — Configure session timeout
|
|
180
|
+
- Yes — Configure session timeout, stop-on-failure, and reasoning effort options
|
|
181
181
|
|
|
182
182
|
Note: Bug filter defaults to all bugs (by severity order). Default Critic to Off unless bugs have `severity: "critical"` or `severity: "high"` (in which case default to On). If the user selects "Other" on any option, handle their custom input.
|
|
183
183
|
|
|
@@ -193,6 +193,14 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
193
193
|
- Off (default) — Pipeline continues to next task after failure
|
|
194
194
|
- On — Pipeline halts immediately when a task exhausts all retries (`STOP_ON_FAILURE=1`)
|
|
195
195
|
|
|
196
|
+
**Question 3 — Reasoning effort** (multiSelect: false):
|
|
197
|
+
- Default (none) — Use CLI default
|
|
198
|
+
- low — Minimize reasoning, fastest output (`PRIZMKIT_EFFORT=low`)
|
|
199
|
+
- medium — Moderate reasoning (`PRIZMKIT_EFFORT=medium`)
|
|
200
|
+
- high — Thorough reasoning for complex tasks (`PRIZMKIT_EFFORT=high`)
|
|
201
|
+
- xhigh — Extensive reasoning (`PRIZMKIT_EFFORT=xhigh`)
|
|
202
|
+
- max — Maximum reasoning, Claude Code only (`PRIZMKIT_EFFORT=max`)
|
|
203
|
+
|
|
196
204
|
**Environment variable mapping** (for translating user responses → env vars):
|
|
197
205
|
|
|
198
206
|
| Config choice | Environment variable |
|
|
@@ -203,6 +211,7 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
203
211
|
| Critic: On | `ENABLE_CRITIC=true` |
|
|
204
212
|
| Timeout: value | `SESSION_TIMEOUT=<seconds>` |
|
|
205
213
|
| Stop on failure: On | `STOP_ON_FAILURE=1` |
|
|
214
|
+
| Effort: value | `PRIZMKIT_EFFORT=<value>` |
|
|
206
215
|
|
|
207
216
|
**Advanced environment variables** (not exposed in interactive menu, pass via `--env`):
|
|
208
217
|
|
|
@@ -220,7 +229,7 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
220
229
|
```
|
|
221
230
|
With all options:
|
|
222
231
|
```powershell
|
|
223
|
-
$env:VERBOSE = "1"; $env:MAX_RETRIES = "5"; $env:SESSION_TIMEOUT = "3600"
|
|
232
|
+
$env:VERBOSE = "1"; $env:MAX_RETRIES = "5"; $env:SESSION_TIMEOUT = "3600"; $env:PRIZMKIT_EFFORT = "high"
|
|
224
233
|
.\.prizmkit\dev-pipeline\run-bugfix.ps1 run .prizmkit/plans/bug-fix-list.json
|
|
225
234
|
```
|
|
226
235
|
|
|
@@ -231,7 +240,7 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
231
240
|
With all options:
|
|
232
241
|
```powershell
|
|
233
242
|
.\.prizmkit\dev-pipeline\launch-bugfix-daemon.ps1 start .prizmkit/plans/bug-fix-list.json `
|
|
234
|
-
--env "VERBOSE=1 MAX_RETRIES=5"
|
|
243
|
+
--env "VERBOSE=1 MAX_RETRIES=5 PRIZMKIT_EFFORT=high"
|
|
235
244
|
```
|
|
236
245
|
|
|
237
246
|
**Manual mode**: Print the assembled command(s) and **stop here**. Do not execute anything. Do not proceed to step 7.
|
|
@@ -195,7 +195,7 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
195
195
|
|
|
196
196
|
**Question 4 — Advanced config?** (multiSelect: false):
|
|
197
197
|
- No (default) — Use defaults for session timeout and failure behavior
|
|
198
|
-
- Yes — Configure session timeout
|
|
198
|
+
- Yes — Configure session timeout, stop-on-failure, and reasoning effort options
|
|
199
199
|
|
|
200
200
|
Default Critic to Off unless features have `estimated_complexity: "high"` or above (in which case default to On).
|
|
201
201
|
|
|
@@ -211,6 +211,14 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
211
211
|
- Off (default) — Pipeline continues to next task after failure
|
|
212
212
|
- On — Pipeline halts immediately when a task exhausts all retries (`STOP_ON_FAILURE=1`)
|
|
213
213
|
|
|
214
|
+
**Question 3 — Reasoning effort** (multiSelect: false):
|
|
215
|
+
- Default (none) — Use CLI default
|
|
216
|
+
- low — Minimize reasoning, fastest output (`PRIZMKIT_EFFORT=low`)
|
|
217
|
+
- medium — Moderate reasoning (`PRIZMKIT_EFFORT=medium`)
|
|
218
|
+
- high — Thorough reasoning for complex tasks (`PRIZMKIT_EFFORT=high`)
|
|
219
|
+
- xhigh — Extensive reasoning (`PRIZMKIT_EFFORT=xhigh`)
|
|
220
|
+
- max — Maximum reasoning, Claude Code only (`PRIZMKIT_EFFORT=max`)
|
|
221
|
+
|
|
214
222
|
**Environment variable mapping** (for translating user responses → env vars):
|
|
215
223
|
|
|
216
224
|
| Config choice | Environment variable |
|
|
@@ -221,6 +229,7 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
221
229
|
| Max retries: N | `MAX_RETRIES=N` |
|
|
222
230
|
| Timeout: value | `SESSION_TIMEOUT=<seconds>` |
|
|
223
231
|
| Stop on failure: On | `STOP_ON_FAILURE=1` |
|
|
232
|
+
| Effort: value | `PRIZMKIT_EFFORT=<value>` |
|
|
224
233
|
|
|
225
234
|
**Advanced environment variables** (not exposed in interactive menu, pass via `--env`):
|
|
226
235
|
|
|
@@ -239,7 +248,7 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
239
248
|
```
|
|
240
249
|
With all options:
|
|
241
250
|
```powershell
|
|
242
|
-
$env:VERBOSE = "1"; $env:ENABLE_CRITIC = "true"; $env:MAX_RETRIES = "5"; $env:SESSION_TIMEOUT = "3600"
|
|
251
|
+
$env:VERBOSE = "1"; $env:ENABLE_CRITIC = "true"; $env:MAX_RETRIES = "5"; $env:SESSION_TIMEOUT = "3600"; $env:PRIZMKIT_EFFORT = "high"
|
|
243
252
|
.\.prizmkit\dev-pipeline\run-feature.ps1 run .prizmkit/plans/feature-list.json --features F-001:F-005
|
|
244
253
|
```
|
|
245
254
|
|
|
@@ -250,7 +259,7 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
250
259
|
With all options:
|
|
251
260
|
```powershell
|
|
252
261
|
.\.prizmkit\dev-pipeline\launch-feature-daemon.ps1 start .prizmkit/plans/feature-list.json --features F-001:F-005 `
|
|
253
|
-
--env "VERBOSE=1 ENABLE_CRITIC=true MAX_RETRIES=5"
|
|
262
|
+
--env "VERBOSE=1 ENABLE_CRITIC=true MAX_RETRIES=5 PRIZMKIT_EFFORT=high"
|
|
254
263
|
```
|
|
255
264
|
|
|
256
265
|
**Manual mode**: Print the assembled command(s) and **stop here**. Do not execute anything. Do not proceed to step 8.
|
|
@@ -192,7 +192,7 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
192
192
|
|
|
193
193
|
**Question 3 — Advanced config?** (multiSelect: false):
|
|
194
194
|
- No (default) — Use defaults for critic review, session timeout, and failure behavior
|
|
195
|
-
- Yes — Configure critic review, session timeout,
|
|
195
|
+
- Yes — Configure critic review, session timeout, stop-on-failure, and reasoning effort options
|
|
196
196
|
|
|
197
197
|
Note: Refactor filter defaults to all refactor items (by priority order). If the user selects "Other" on any option, handle their custom input.
|
|
198
198
|
|
|
@@ -212,6 +212,14 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
212
212
|
- Off (default) — Skip adversarial review
|
|
213
213
|
- On — Enable adversarial critic review: an independent AI agent reviews the refactor plan for completeness and the implementation for regressions, missing edge cases, and behavior violations. Adds ~5-10 min per refactor task.
|
|
214
214
|
|
|
215
|
+
**Question 4 — Reasoning effort** (multiSelect: false):
|
|
216
|
+
- Default (none) — Use CLI default
|
|
217
|
+
- low — Minimize reasoning, fastest output (`PRIZMKIT_EFFORT=low`)
|
|
218
|
+
- medium — Moderate reasoning (`PRIZMKIT_EFFORT=medium`)
|
|
219
|
+
- high — Thorough reasoning for complex tasks (`PRIZMKIT_EFFORT=high`)
|
|
220
|
+
- xhigh — Extensive reasoning (`PRIZMKIT_EFFORT=xhigh`)
|
|
221
|
+
- max — Maximum reasoning, Claude Code only (`PRIZMKIT_EFFORT=max`)
|
|
222
|
+
|
|
215
223
|
Default Critic to Off unless refactor items have `priority: "critical"` (in which case default to On).
|
|
216
224
|
|
|
217
225
|
**Environment variable mapping** (for translating user responses → env vars):
|
|
@@ -224,6 +232,7 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
224
232
|
| Critic: On | `ENABLE_CRITIC=true` |
|
|
225
233
|
| Timeout: value | `SESSION_TIMEOUT=<seconds>` |
|
|
226
234
|
| Stop on failure: On | `STOP_ON_FAILURE=1` |
|
|
235
|
+
| Effort: value | `PRIZMKIT_EFFORT=<value>` |
|
|
227
236
|
|
|
228
237
|
**Advanced environment variables** (not exposed in interactive menu, pass via `--env`):
|
|
229
238
|
|
|
@@ -241,7 +250,7 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
241
250
|
```
|
|
242
251
|
With all options:
|
|
243
252
|
```powershell
|
|
244
|
-
$env:VERBOSE = "1"; $env:MAX_RETRIES = "5"; $env:SESSION_TIMEOUT = "3600"
|
|
253
|
+
$env:VERBOSE = "1"; $env:MAX_RETRIES = "5"; $env:SESSION_TIMEOUT = "3600"; $env:PRIZMKIT_EFFORT = "high"
|
|
245
254
|
.\.prizmkit\dev-pipeline\run-refactor.ps1 run .prizmkit/plans/refactor-list.json
|
|
246
255
|
```
|
|
247
256
|
|