prizmkit 1.1.39 → 1.1.41
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/dev-pipeline/SCHEMA_ANALYSIS.md +1 -1
- package/bundled/dev-pipeline/run-bugfix.sh +74 -0
- package/bundled/dev-pipeline/run-feature.sh +74 -0
- package/bundled/dev-pipeline/run-refactor.sh +74 -0
- package/bundled/dev-pipeline/scripts/generate-bootstrap-prompt.py +0 -6
- package/bundled/dev-pipeline/scripts/generate-bugfix-prompt.py +118 -1
- package/bundled/dev-pipeline/scripts/generate-refactor-prompt.py +123 -8
- package/bundled/dev-pipeline/templates/bootstrap-tier1.md +0 -23
- package/bundled/dev-pipeline/templates/bootstrap-tier2.md +0 -23
- package/bundled/dev-pipeline/templates/bootstrap-tier3.md +0 -23
- package/bundled/dev-pipeline/templates/bug-fix-list-schema.json +22 -3
- package/bundled/dev-pipeline/templates/bugfix-bootstrap-prompt.md +56 -0
- package/bundled/dev-pipeline/templates/refactor-bootstrap-prompt.md +64 -4
- package/bundled/dev-pipeline/templates/refactor-list-schema.json +22 -3
- package/bundled/dev-pipeline/tests/test-deploy-safety.sh +223 -0
- package/bundled/skills/_metadata.json +3 -3
- package/bundled/skills/app-planner/SKILL.md +0 -3
- package/bundled/skills/bugfix-pipeline-launcher/SKILL.md +34 -6
- package/bundled/skills/feature-pipeline-launcher/SKILL.md +42 -18
- package/bundled/skills/prizmkit-committer/SKILL.md +0 -1
- package/bundled/skills/prizmkit-deploy/SKILL.md +491 -209
- package/bundled/skills/prizmkit-deploy/references/cloud-platform-deploy.md +93 -0
- package/bundled/skills/prizmkit-deploy/references/deploy-config-schema.md +147 -0
- package/bundled/skills/prizmkit-deploy/references/deploy-history-schema.md +62 -0
- package/bundled/skills/prizmkit-deploy/references/docker-deploy.md +31 -0
- package/bundled/skills/prizmkit-deploy/references/nginx-blue-green.md +59 -0
- package/bundled/skills/prizmkit-init/SKILL.md +0 -2
- package/bundled/skills/prizmkit-plan/SKILL.md +0 -3
- package/bundled/skills/recovery-workflow/SKILL.md +96 -7
- package/bundled/skills/refactor-pipeline-launcher/SKILL.md +40 -9
- package/package.json +1 -1
- package/bundled/dev-pipeline/templates/sections/phase-deploy-verification.md +0 -31
- package/bundled/skills/prizmkit-deploy/assets/deploy-template.md +0 -187
|
@@ -50,10 +50,14 @@ Before any action, validate:
|
|
|
50
50
|
1. **bugfix pipeline exists**: Confirm `dev-pipeline/launch-bugfix-daemon.sh` and `dev-pipeline/run-bugfix.sh` are present and executable
|
|
51
51
|
2. **For start**: `.prizmkit/plans/bug-fix-list.json` must exist in `.prizmkit/plans/` (or user-specified path)
|
|
52
52
|
3. **Dependencies**: `jq`, `python3`, AI CLI (`cbc` or `claude`) must be in PATH
|
|
53
|
+
4. **Browser tools** (optional): If any bug has `browser_interaction` field, check the corresponding tool is available. Bugs may specify `tool: "playwright-cli"`, `tool: "opencli"`, or `tool: "auto"` (AI chooses at runtime).
|
|
53
54
|
|
|
54
55
|
Quick check:
|
|
55
56
|
```bash
|
|
56
57
|
command -v jq && command -v python3 && (command -v cbc || command -v claude) && echo "All dependencies OK"
|
|
58
|
+
# Optional: browser interaction support (check both tools — bugs may use either)
|
|
59
|
+
command -v playwright-cli && echo "playwright-cli OK" || echo "playwright-cli not found (playwright browser verification will be skipped)"
|
|
60
|
+
command -v opencli && echo "opencli OK" || echo "opencli not found (opencli browser verification will be skipped)"
|
|
57
61
|
```
|
|
58
62
|
|
|
59
63
|
If `.prizmkit/plans/bug-fix-list.json` is missing, inform user:
|
|
@@ -67,6 +71,8 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
67
71
|
|
|
68
72
|
#### Intent A: Start Bugfix Pipeline
|
|
69
73
|
|
|
74
|
+
> **Execution model**: The pipeline processes bugs **sequentially** (one at a time, in severity/priority order). The `dependencies` field in bug-fix-list.json is reserved for future parallel execution support and does NOT affect current execution order.
|
|
75
|
+
|
|
70
76
|
1. **Check prerequisites**:
|
|
71
77
|
```bash
|
|
72
78
|
ls .prizmkit/plans/bug-fix-list.json 2>/dev/null && echo "Found" || echo "Missing"
|
|
@@ -126,13 +132,31 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
126
132
|
- 1
|
|
127
133
|
- 5
|
|
128
134
|
|
|
129
|
-
**Question 3 —
|
|
135
|
+
**Question 3 — Critic review** (multiSelect: false):
|
|
136
|
+
- Off (default) — Skip adversarial review
|
|
137
|
+
- On — Enable adversarial critic review: an independent AI agent reviews the diagnosis/plan for completeness and the fix for defects, edge cases, and regression risks. Adds ~5-10 min per bug.
|
|
138
|
+
|
|
139
|
+
**Question 4 — Advanced config?** (multiSelect: false):
|
|
140
|
+
- No (default) — Use defaults for session timeout and failure behavior
|
|
141
|
+
- Yes — Configure session timeout and stop-on-failure options
|
|
142
|
+
|
|
143
|
+
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.
|
|
144
|
+
|
|
145
|
+
**If user chose "Yes" to Advanced config**, ask a second round of `AskUserQuestion`:
|
|
146
|
+
|
|
147
|
+
**Question 1 — Session timeout** (multiSelect: false):
|
|
130
148
|
- None (default) — No timeout
|
|
131
149
|
- 30 min — `SESSION_TIMEOUT=1800`
|
|
132
150
|
- 1 hour — `SESSION_TIMEOUT=3600`
|
|
133
151
|
- 2 hours — `SESSION_TIMEOUT=7200`
|
|
134
152
|
|
|
135
|
-
|
|
153
|
+
**Question 2 — Stop on failure** (multiSelect: false):
|
|
154
|
+
- Off (default) — Pipeline continues to next task after failure
|
|
155
|
+
- On — Pipeline halts immediately when a task exhausts all retries (`STOP_ON_FAILURE=1`)
|
|
156
|
+
|
|
157
|
+
**Question 3 — Deploy after completion?** (multiSelect: false):
|
|
158
|
+
- No (default) — Skip deployment after pipeline completes
|
|
159
|
+
- 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').
|
|
136
160
|
|
|
137
161
|
**Environment variable mapping** (for translating user responses → env vars):
|
|
138
162
|
|
|
@@ -141,8 +165,10 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
141
165
|
| Verbose: Off | `VERBOSE=0` |
|
|
142
166
|
| Verbose: On | `VERBOSE=1` |
|
|
143
167
|
| Max retries: N | `MAX_RETRIES=N` |
|
|
168
|
+
| Critic: On | `ENABLE_CRITIC=true` |
|
|
144
169
|
| Timeout: value | `SESSION_TIMEOUT=<seconds>` |
|
|
145
|
-
|
|
|
170
|
+
| Stop on failure: On | `STOP_ON_FAILURE=1` |
|
|
171
|
+
| Deploy: Yes | `ENABLE_DEPLOY=1` |
|
|
146
172
|
|
|
147
173
|
**Advanced environment variables** (not exposed in interactive menu, pass via `--env`):
|
|
148
174
|
|
|
@@ -156,7 +182,6 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
156
182
|
| `LOG_CLEANUP_ENABLED` | `1` | Run periodic log cleanup (`0` to disable) |
|
|
157
183
|
| `LOG_RETENTION_DAYS` | `14` | Delete logs older than N days |
|
|
158
184
|
| `LOG_MAX_TOTAL_MB` | `1024` | Keep total logs under N MB via oldest-first cleanup |
|
|
159
|
-
| `STOP_ON_FAILURE` | `0` | Stop pipeline when a task exhausts all retries (`1` to stop immediately) |
|
|
160
185
|
|
|
161
186
|
⚠️ STOP HERE and wait for user response before continuing to step 6.
|
|
162
187
|
|
|
@@ -168,7 +193,7 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
168
193
|
```
|
|
169
194
|
With all options:
|
|
170
195
|
```bash
|
|
171
|
-
VERBOSE=1 MAX_RETRIES=5 SESSION_TIMEOUT=3600 \
|
|
196
|
+
VERBOSE=1 MAX_RETRIES=5 SESSION_TIMEOUT=3600 ENABLE_DEPLOY=1 \
|
|
172
197
|
dev-pipeline/run-bugfix.sh run .prizmkit/plans/bug-fix-list.json
|
|
173
198
|
```
|
|
174
199
|
|
|
@@ -179,7 +204,7 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
179
204
|
With all options:
|
|
180
205
|
```bash
|
|
181
206
|
dev-pipeline/launch-bugfix-daemon.sh start .prizmkit/plans/bug-fix-list.json \
|
|
182
|
-
--env "VERBOSE=1 MAX_RETRIES=5"
|
|
207
|
+
--env "VERBOSE=1 MAX_RETRIES=5 ENABLE_DEPLOY=1"
|
|
183
208
|
```
|
|
184
209
|
|
|
185
210
|
**Manual mode**: Print the assembled command(s) and **stop here**. Do not execute anything. Do not proceed to step 7.
|
|
@@ -312,6 +337,9 @@ dev-pipeline/reset-bug.sh B-001 --clean --run .prizmkit/plans/bug-fix-list.json
|
|
|
312
337
|
| PID file stale (process dead) | `launch-bugfix-daemon.sh` auto-cleans, retry start |
|
|
313
338
|
| Launch failed (process died immediately) | Show last 20 lines of log: `tail -20 .prizmkit/state/bugfix/pipeline-daemon.log` |
|
|
314
339
|
| All bugs blocked/failed/needs-info | Show status, suggest retrying or providing more info |
|
|
340
|
+
| `playwright-cli` not installed | Browser verification skipped for playwright bugs (non-blocking). Suggest: `npm install -g @playwright/cli@latest && playwright-cli install --skills` |
|
|
341
|
+
| `opencli` not installed | Browser verification skipped for opencli bugs (non-blocking). Install opencli for Chrome session-based browser verification |
|
|
342
|
+
| Deploy session failed | Pipeline completed but deploy session exited non-zero. Check `.prizmkit/state/bugfix/deploy/<session_id>/logs/session.log`. Retry manually: `/prizmkit-deploy`. |
|
|
315
343
|
| Permission denied on script | Run `chmod +x dev-pipeline/launch-bugfix-daemon.sh dev-pipeline/run-bugfix.sh` |
|
|
316
344
|
|
|
317
345
|
### Integration Notes
|
|
@@ -52,13 +52,14 @@ Before any action, validate:
|
|
|
52
52
|
2. **For start**: `.prizmkit/plans/feature-list.json` must exist in `.prizmkit/plans/` (or user-specified path)
|
|
53
53
|
3. **Dependencies**: `jq`, `python3`, AI CLI (`cbc` or `claude`) must be in PATH
|
|
54
54
|
4. **Python version**: Requires Python 3.8+ for dev-pipeline scripts
|
|
55
|
-
5. **
|
|
55
|
+
5. **Browser tools** (optional): If any feature has `browser_interaction` field, check the corresponding tool is available. Features may specify `tool: "playwright-cli"`, `tool: "opencli"`, or `tool: "auto"` (AI chooses at runtime).
|
|
56
56
|
|
|
57
57
|
Quick check:
|
|
58
58
|
```bash
|
|
59
59
|
command -v jq && command -v python3 && (command -v cbc || command -v claude) && echo "All dependencies OK"
|
|
60
|
-
# Optional: browser interaction support
|
|
61
|
-
command -v playwright-cli && echo "playwright-cli OK" || echo "playwright-cli not found (browser verification will be skipped)"
|
|
60
|
+
# Optional: browser interaction support (check both tools — features may use either)
|
|
61
|
+
command -v playwright-cli && echo "playwright-cli OK" || echo "playwright-cli not found (playwright browser verification will be skipped)"
|
|
62
|
+
command -v opencli && echo "opencli OK" || echo "opencli not found (opencli browser verification will be skipped)"
|
|
62
63
|
```
|
|
63
64
|
|
|
64
65
|
If `.prizmkit/plans/feature-list.json` is missing, inform user:
|
|
@@ -72,6 +73,8 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
72
73
|
|
|
73
74
|
#### Intent A: Start Pipeline
|
|
74
75
|
|
|
76
|
+
> **Execution model**: The pipeline processes features **sequentially** (one at a time, in order). The `dependencies` field in feature-list.json is reserved for future parallel execution support and does NOT affect current execution order.
|
|
77
|
+
|
|
75
78
|
1. **Check prerequisites**:
|
|
76
79
|
```bash
|
|
77
80
|
ls .prizmkit/plans/feature-list.json 2>/dev/null && echo "Found" || echo "Missing"
|
|
@@ -139,7 +142,7 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
139
142
|
|
|
140
143
|
**Question 1 — Critic review** (multiSelect: false):
|
|
141
144
|
- Off (default) — Skip adversarial review
|
|
142
|
-
- On — Enable critic review
|
|
145
|
+
- On — Enable adversarial critic review: an independent AI agent reviews the spec/plan for completeness and the implementation for defects, edge cases, and missed requirements. Adds ~5-10 min per feature.
|
|
143
146
|
|
|
144
147
|
**Question 2 — Verbose logging** (multiSelect: false):
|
|
145
148
|
- On (default) — Detailed AI session logs including tool calls and subagent activity
|
|
@@ -150,15 +153,29 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
150
153
|
- 1
|
|
151
154
|
- 5
|
|
152
155
|
|
|
153
|
-
**Question 4 —
|
|
156
|
+
**Question 4 — Advanced config?** (multiSelect: false):
|
|
157
|
+
- No (default) — Use defaults for session timeout and failure behavior
|
|
158
|
+
- Yes — Configure session timeout and stop-on-failure options
|
|
159
|
+
|
|
160
|
+
Note: Due to the 4-question limit per `AskUserQuestion` call, Feature filter and Browser verify use their defaults (all features, auto-detect browser tools). If the user selects "Other" on any option, handle their custom input.
|
|
161
|
+
|
|
162
|
+
Default Critic to Off unless features have `estimated_complexity: "high"` or above (in which case default to On).
|
|
163
|
+
|
|
164
|
+
**If user chose "Yes" to Advanced config**, ask a second round of `AskUserQuestion`:
|
|
165
|
+
|
|
166
|
+
**Question 1 — Session timeout** (multiSelect: false):
|
|
154
167
|
- None (default) — No timeout
|
|
155
168
|
- 30 min — `SESSION_TIMEOUT=1800`
|
|
156
169
|
- 1 hour — `SESSION_TIMEOUT=3600`
|
|
157
170
|
- 2 hours — `SESSION_TIMEOUT=7200`
|
|
158
171
|
|
|
159
|
-
|
|
172
|
+
**Question 2 — Stop on failure** (multiSelect: false):
|
|
173
|
+
- Off (default) — Pipeline continues to next task after failure
|
|
174
|
+
- On — Pipeline halts immediately when a task exhausts all retries (`STOP_ON_FAILURE=1`)
|
|
160
175
|
|
|
161
|
-
|
|
176
|
+
**Question 3 — Deploy after completion?** (multiSelect: false):
|
|
177
|
+
- No (default) — Skip deployment after pipeline completes
|
|
178
|
+
- 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').
|
|
162
179
|
|
|
163
180
|
**Environment variable mapping** (for translating user responses → env vars):
|
|
164
181
|
|
|
@@ -169,6 +186,8 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
169
186
|
| Verbose: On | `VERBOSE=1` |
|
|
170
187
|
| Max retries: N | `MAX_RETRIES=N` |
|
|
171
188
|
| Timeout: value | `SESSION_TIMEOUT=<seconds>` |
|
|
189
|
+
| Stop on failure: On | `STOP_ON_FAILURE=1` |
|
|
190
|
+
| Deploy: Yes | `ENABLE_DEPLOY=1` |
|
|
172
191
|
|
|
173
192
|
**Advanced environment variables** (not exposed in interactive menu, pass via `--env`):
|
|
174
193
|
|
|
@@ -183,7 +202,6 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
183
202
|
| `LOG_CLEANUP_ENABLED` | `1` | Run periodic log cleanup (`0` to disable) |
|
|
184
203
|
| `LOG_RETENTION_DAYS` | `14` | Delete logs older than N days |
|
|
185
204
|
| `LOG_MAX_TOTAL_MB` | `1024` | Keep total logs under N MB via oldest-first cleanup |
|
|
186
|
-
| `STOP_ON_FAILURE` | `0` | Stop pipeline when a task exhausts all retries (`1` to stop immediately) |
|
|
187
205
|
|
|
188
206
|
⚠️ STOP HERE and wait for user response before continuing to step 7.
|
|
189
207
|
|
|
@@ -195,7 +213,7 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
195
213
|
```
|
|
196
214
|
With all options:
|
|
197
215
|
```bash
|
|
198
|
-
VERBOSE=1 ENABLE_CRITIC=true MAX_RETRIES=5 SESSION_TIMEOUT=3600 \
|
|
216
|
+
VERBOSE=1 ENABLE_CRITIC=true MAX_RETRIES=5 SESSION_TIMEOUT=3600 ENABLE_DEPLOY=1 \
|
|
199
217
|
dev-pipeline/run-feature.sh run .prizmkit/plans/feature-list.json --features F-001:F-005
|
|
200
218
|
```
|
|
201
219
|
|
|
@@ -206,7 +224,7 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
206
224
|
With all options:
|
|
207
225
|
```bash
|
|
208
226
|
dev-pipeline/launch-feature-daemon.sh start .prizmkit/plans/feature-list.json --features F-001:F-005 \
|
|
209
|
-
--env "VERBOSE=1 ENABLE_CRITIC=true MAX_RETRIES=5"
|
|
227
|
+
--env "VERBOSE=1 ENABLE_CRITIC=true MAX_RETRIES=5 ENABLE_DEPLOY=1"
|
|
210
228
|
```
|
|
211
229
|
|
|
212
230
|
**Manual mode**: Print the assembled command(s) and **stop here**. Do not execute anything. Do not proceed to step 8.
|
|
@@ -233,7 +251,7 @@ Detect user intent from their message, then follow the corresponding workflow:
|
|
|
233
251
|
- Summarize results: total features, succeeded, failed, skipped
|
|
234
252
|
- If all succeeded: each feature session has already run `prizmkit-retrospective` internally. Ask user what's next.
|
|
235
253
|
- If some failed: show failed feature IDs and suggest `reset-feature.sh <F-XXX> --clean --run` for a fresh retry
|
|
236
|
-
- **Browser verification**: If any completed features have `browser_interaction` and `playwright-cli` is installed, offer to run browser verification (see
|
|
254
|
+
- **Browser verification**: If any completed features have `browser_interaction` and the corresponding browser tool (`playwright-cli` or `opencli`) is installed, offer to run browser verification (see Post-Pipeline Browser Verification)
|
|
237
255
|
|
|
238
256
|
**If background daemon**:
|
|
239
257
|
1. Verify launch:
|
|
@@ -335,7 +353,7 @@ Notes:
|
|
|
335
353
|
|
|
336
354
|
#### Post-Pipeline Browser Verification
|
|
337
355
|
|
|
338
|
-
After pipeline completion, if features have `browser_interaction` fields and `playwright-cli` is installed:
|
|
356
|
+
After pipeline completion, if features have `browser_interaction` fields and the corresponding browser tool (`playwright-cli` or `opencli`) is installed:
|
|
339
357
|
|
|
340
358
|
1. **Check which features qualify**:
|
|
341
359
|
```bash
|
|
@@ -346,21 +364,25 @@ After pipeline completion, if features have `browser_interaction` fields and `pl
|
|
|
346
364
|
for feat in data.get('features', []):
|
|
347
365
|
bi = feat.get('browser_interaction')
|
|
348
366
|
if bi and feat.get('status') == 'completed':
|
|
349
|
-
|
|
367
|
+
tool = bi.get('tool', 'auto') if isinstance(bi, dict) else 'auto'
|
|
368
|
+
print(f\" {feat['id']}: {feat.get('title','')} (tool: {tool})\")
|
|
350
369
|
" 2>/dev/null
|
|
351
370
|
```
|
|
352
371
|
|
|
353
|
-
2. **Ask user**: "N features have browser verification configured. Run
|
|
372
|
+
2. **Ask user**: "N features have browser verification configured. Run browser verification now? (Y/n)"
|
|
354
373
|
|
|
355
374
|
3. **If yes**, for each qualifying feature:
|
|
356
375
|
- Start dev server if `setup_command` is specified
|
|
357
|
-
-
|
|
376
|
+
- Select browser tool based on `browser_interaction.tool`:
|
|
377
|
+
- `"playwright-cli"` → Use `playwright-cli snapshot` to discover element refs, then verify each goal in `verify_steps`
|
|
378
|
+
- `"opencli"` → Use `opencli browser` to interact with Chrome's logged-in session (ideal for OAuth/third-party verification)
|
|
379
|
+
- `"auto"` → AI chooses the appropriate tool based on context (default: `playwright-cli` for local dev, `opencli` for authenticated flows)
|
|
380
|
+
- Take a screenshot after verification
|
|
358
381
|
- Close browser and stop dev server
|
|
359
382
|
|
|
360
383
|
4. **Report results**:
|
|
361
|
-
- For each feature: URL opened, steps executed, screenshot path
|
|
384
|
+
- For each feature: URL opened, tool used, steps executed, screenshot path
|
|
362
385
|
- If any step fails: flag as verification failure
|
|
363
|
-
- Screenshots are saved to `.playwright-cli/` for user review
|
|
364
386
|
|
|
365
387
|
**Important**: Browser verification is best-effort — failures here do NOT change the feature's pipeline status. They serve as visual confirmation aids for the user.
|
|
366
388
|
|
|
@@ -378,9 +400,11 @@ After pipeline completion, if features have `browser_interaction` fields and `pl
|
|
|
378
400
|
| Launch failed (process died immediately) | Show last 20 lines of log: `tail -20 .prizmkit/state/features/pipeline-daemon.log` |
|
|
379
401
|
| Feature stuck/blocked | Use `reset-feature.sh <F-XXX> --clean --run` for a fresh retry |
|
|
380
402
|
| All features blocked/failed | Show status, suggest daemon-safe recovery: `dev-pipeline/reset-feature.sh <F-XXX> --clean --run .prizmkit/plans/feature-list.json` |
|
|
381
|
-
| `playwright-cli` not installed | Browser verification skipped (non-blocking). Suggest: `npm install -g @playwright/cli@latest && playwright-cli install --skills` |
|
|
403
|
+
| `playwright-cli` not installed | Browser verification skipped for playwright features (non-blocking). Suggest: `npm install -g @playwright/cli@latest && playwright-cli install --skills` |
|
|
404
|
+
| `opencli` not installed | Browser verification skipped for opencli features (non-blocking). Install opencli for Chrome session-based browser verification |
|
|
382
405
|
| Permission denied on script | Run `chmod +x dev-pipeline/launch-feature-daemon.sh dev-pipeline/run-feature.sh` |
|
|
383
406
|
| Pipeline stop failed (process won't die) | Process may be stuck in I/O wait. Try `kill -9 <PID>` manually. Check for orphaned child processes with `ps aux \| grep claude` |
|
|
407
|
+
| Deploy session failed | Pipeline completed but deploy session exited non-zero. Check `.prizmkit/state/features/deploy/<session_id>/logs/session.log`. Retry manually: `/prizmkit-deploy`. |
|
|
384
408
|
| `.env.local` missing or incomplete | Warn: database connection variables not found. Suggest creating env file with required connection variables for the project's database |
|
|
385
409
|
| Database unreachable | Warn: database features will produce mock-only tests. Suggest checking database service status and connection credentials |
|
|
386
410
|
| Migrations not applied | Warn: tables or schema referenced in migration files not found in database. Suggest applying pending migrations |
|
|
@@ -17,7 +17,6 @@ description: "Pure git commit workflow with safety checks. Stages files, generat
|
|
|
17
17
|
| Uncommitted changes exist | `git status` shows modified/added/untracked files | Inform user "nothing to commit" and stop |
|
|
18
18
|
| `.prizm-docs/` synced (feature/refactor) | `/prizmkit-retrospective` has run | Run `/prizmkit-retrospective` first |
|
|
19
19
|
| Code review passed (pipeline mode) | `review-report.md` in artifact directory has `## Verdict: PASS` | Run `/prizmkit-code-review` first |
|
|
20
|
-
| `.prizmkit/deploy.md` updated (if applicable) | If `/prizmkit-deploy` ran, `.prizmkit/deploy.md` is staged | Run `/prizmkit-deploy` or skip if no infrastructure changes |
|
|
21
20
|
|
|
22
21
|
### Workflow
|
|
23
22
|
|