prizmkit 1.1.8 → 1.1.9
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/adapters/codebuddy/skill-adapter.js +21 -7
- package/bundled/agents/prizm-dev-team-reviewer.md +53 -173
- package/bundled/dev-pipeline/.env.example +45 -0
- package/bundled/dev-pipeline/SCHEMA_ANALYSIS.md +535 -0
- package/bundled/dev-pipeline/assets/feature-list-example.json +0 -1
- package/bundled/dev-pipeline/launch-bugfix-daemon.sh +57 -12
- package/bundled/dev-pipeline/launch-feature-daemon.sh +3 -1
- package/bundled/dev-pipeline/launch-refactor-daemon.sh +57 -12
- package/bundled/dev-pipeline/lib/branch.sh +6 -1
- package/bundled/dev-pipeline/lib/common.sh +71 -0
- package/bundled/dev-pipeline/lib/heartbeat.sh +2 -2
- package/bundled/dev-pipeline/retry-bugfix.sh +60 -23
- package/bundled/dev-pipeline/retry-feature.sh +47 -12
- package/bundled/dev-pipeline/retry-refactor.sh +105 -23
- package/bundled/dev-pipeline/run-bugfix.sh +265 -44
- package/bundled/dev-pipeline/run-feature.sh +35 -1
- package/bundled/dev-pipeline/run-refactor.sh +376 -51
- package/bundled/dev-pipeline/scripts/check-session-status.py +24 -1
- package/bundled/dev-pipeline/scripts/detect-stuck.py +195 -85
- package/bundled/dev-pipeline/scripts/generate-bootstrap-prompt.py +31 -19
- package/bundled/dev-pipeline/scripts/generate-bugfix-prompt.py +19 -3
- package/bundled/dev-pipeline/scripts/generate-refactor-prompt.py +98 -11
- package/bundled/dev-pipeline/scripts/init-bugfix-pipeline.py +30 -5
- package/bundled/dev-pipeline/scripts/init-pipeline.py +3 -3
- package/bundled/dev-pipeline/scripts/init-refactor-pipeline.py +15 -4
- package/bundled/dev-pipeline/scripts/parse-stream-progress.py +1 -5
- package/bundled/dev-pipeline/scripts/patch-completion-notes.py +191 -0
- package/bundled/dev-pipeline/scripts/update-bug-status.py +159 -14
- package/bundled/dev-pipeline/scripts/update-feature-status.py +79 -37
- package/bundled/dev-pipeline/scripts/update-refactor-status.py +343 -13
- package/bundled/dev-pipeline/templates/agent-prompts/dev-fix.md +1 -1
- package/bundled/dev-pipeline/templates/agent-prompts/reviewer-review.md +7 -11
- package/bundled/dev-pipeline/templates/bootstrap-prompt.md +41 -7
- package/bundled/dev-pipeline/templates/bootstrap-tier1.md +27 -3
- package/bundled/dev-pipeline/templates/bootstrap-tier2.md +43 -19
- package/bundled/dev-pipeline/templates/bootstrap-tier3.md +54 -26
- package/bundled/dev-pipeline/templates/bug-fix-list-schema.json +5 -14
- package/bundled/dev-pipeline/templates/bugfix-bootstrap-prompt.md +36 -25
- package/bundled/dev-pipeline/templates/feature-list-schema.json +23 -11
- package/bundled/dev-pipeline/templates/refactor-bootstrap-prompt.md +270 -0
- package/bundled/dev-pipeline/templates/refactor-list-schema.json +10 -2
- package/bundled/dev-pipeline/templates/sections/context-budget-rules.md +3 -1
- package/bundled/dev-pipeline/templates/sections/critical-paths-agent.md +1 -0
- package/bundled/dev-pipeline/templates/sections/feature-context.md +2 -0
- package/bundled/dev-pipeline/templates/sections/phase-commit-full.md +29 -2
- package/bundled/dev-pipeline/templates/sections/phase-commit.md +22 -0
- package/bundled/dev-pipeline/templates/sections/phase-deploy-verification.md +2 -2
- package/bundled/dev-pipeline/templates/sections/phase-review-agent.md +8 -6
- package/bundled/dev-pipeline/templates/sections/phase-review-full.md +7 -5
- package/bundled/dev-pipeline/templates/sections/phase-specify-plan-full.md +3 -3
- package/bundled/skills/_metadata.json +5 -22
- package/bundled/skills/app-planner/SKILL.md +92 -66
- package/bundled/skills/app-planner/assets/app-design-guide.md +1 -1
- package/bundled/skills/app-planner/references/architecture-decisions.md +1 -1
- package/bundled/skills/app-planner/references/project-brief-guide.md +69 -66
- package/bundled/skills/bug-fix-workflow/SKILL.md +47 -4
- package/bundled/skills/bug-planner/SKILL.md +130 -188
- package/bundled/skills/bug-planner/assets/bug-confirmation-template.md +43 -0
- package/bundled/skills/bug-planner/references/critic-and-verification.md +44 -0
- package/bundled/skills/bug-planner/references/error-recovery.md +73 -0
- package/bundled/skills/bug-planner/references/input-formats.md +53 -0
- package/bundled/skills/bug-planner/references/schema-validation.md +25 -0
- package/bundled/skills/bug-planner/references/severity-rules.md +16 -0
- package/bundled/skills/bug-planner/scripts/validate-bug-list.py +1 -5
- package/bundled/skills/bugfix-pipeline-launcher/SKILL.md +5 -10
- package/bundled/skills/feature-pipeline-launcher/SKILL.md +16 -3
- package/bundled/skills/feature-planner/SKILL.md +33 -122
- package/bundled/skills/feature-planner/assets/evaluation-guide.md +1 -1
- package/bundled/skills/feature-planner/assets/planning-guide.md +21 -5
- package/bundled/skills/feature-planner/references/browser-interaction.md +2 -4
- package/bundled/skills/feature-planner/references/completeness-review.md +57 -0
- package/bundled/skills/feature-planner/references/error-recovery.md +15 -34
- package/bundled/skills/feature-planner/references/incremental-feature-planning.md +1 -1
- package/bundled/skills/feature-planner/references/new-project-planning.md +2 -2
- package/bundled/skills/feature-planner/scripts/validate-and-generate.py +1 -2
- package/bundled/skills/feature-workflow/SKILL.md +3 -4
- package/bundled/skills/prizm-kit/SKILL.md +39 -49
- package/bundled/skills/prizmkit-code-review/SKILL.md +51 -64
- package/bundled/skills/prizmkit-code-review/rules/dimensions.md +85 -0
- package/bundled/skills/prizmkit-code-review/rules/fix-strategy.md +11 -11
- package/bundled/skills/prizmkit-committer/SKILL.md +3 -31
- package/bundled/skills/prizmkit-deploy/SKILL.md +34 -31
- package/bundled/skills/prizmkit-deploy/assets/deploy-template.md +1 -1
- package/bundled/skills/prizmkit-implement/SKILL.md +35 -68
- package/bundled/skills/prizmkit-init/SKILL.md +112 -65
- package/bundled/skills/prizmkit-init/assets/project-brief-template.md +82 -0
- package/bundled/skills/prizmkit-plan/SKILL.md +120 -79
- package/bundled/skills/prizmkit-plan/assets/plan-template.md +28 -18
- package/bundled/skills/prizmkit-plan/assets/spec-template.md +28 -11
- package/bundled/skills/prizmkit-plan/references/clarify-guide.md +3 -3
- package/bundled/skills/prizmkit-plan/references/verification-checklist.md +60 -0
- package/bundled/skills/prizmkit-prizm-docs/SKILL.md +10 -81
- package/bundled/skills/prizmkit-prizm-docs/assets/{PRIZM-SPEC.md → prizm-docs-format.md} +41 -526
- package/bundled/skills/prizmkit-prizm-docs/references/op-init.md +46 -0
- package/bundled/skills/prizmkit-prizm-docs/references/op-rebuild.md +16 -0
- package/bundled/skills/prizmkit-prizm-docs/references/op-status.md +14 -0
- package/bundled/skills/prizmkit-prizm-docs/references/op-update.md +19 -0
- package/bundled/skills/prizmkit-prizm-docs/references/op-validate.md +17 -0
- package/bundled/skills/prizmkit-retrospective/SKILL.md +27 -65
- package/bundled/skills/prizmkit-retrospective/references/knowledge-injection-steps.md +3 -4
- package/bundled/skills/prizmkit-retrospective/references/structural-sync-steps.md +7 -25
- package/bundled/skills/recovery-workflow/SKILL.md +8 -8
- package/bundled/skills/refactor-pipeline-launcher/SKILL.md +17 -9
- package/bundled/skills/refactor-planner/SKILL.md +23 -41
- package/bundled/skills/refactor-workflow/SKILL.md +1 -2
- package/bundled/team/prizm-dev-team.json +1 -1
- package/bundled/{skills/prizm-kit/assets → templates}/project-memory-template.md +1 -1
- package/package.json +1 -1
- package/src/clean.js +0 -1
- package/src/gitignore-template.js +0 -1
- package/src/scaffold.js +10 -3
- package/bundled/dev-pipeline/templates/agent-prompts/reviewer-analyze.md +0 -5
- package/bundled/dev-pipeline/templates/sections/phase-analyze-agent.md +0 -19
- package/bundled/dev-pipeline/templates/sections/phase-analyze-full.md +0 -19
- package/bundled/skills/app-planner/references/project-conventions.md +0 -93
- package/bundled/skills/prizmkit-analyze/SKILL.md +0 -207
- package/bundled/skills/prizmkit-code-review/rules/dimensions-bugfix.md +0 -25
- package/bundled/skills/prizmkit-code-review/rules/dimensions-feature.md +0 -43
- package/bundled/skills/prizmkit-code-review/rules/dimensions-refactor.md +0 -25
- package/bundled/skills/prizmkit-implement/references/deploy-guide-protocol.md +0 -69
- package/bundled/skills/prizmkit-verify/SKILL.md +0 -281
- package/bundled/skills/prizmkit-verify/scripts/verify-light.py +0 -402
|
@@ -0,0 +1,270 @@
|
|
|
1
|
+
# Dev-Pipeline Refactor Session Bootstrap
|
|
2
|
+
|
|
3
|
+
## Session Context
|
|
4
|
+
|
|
5
|
+
- **Pipeline Run ID**: {{RUN_ID}}
|
|
6
|
+
- **Session ID**: {{SESSION_ID}}
|
|
7
|
+
- **Refactor ID**: {{REFACTOR_ID}}
|
|
8
|
+
- **Refactor Title**: {{REFACTOR_TITLE}}
|
|
9
|
+
- **Refactor Type**: {{REFACTOR_TYPE}}
|
|
10
|
+
- **Priority**: {{PRIORITY}}
|
|
11
|
+
- **Complexity**: {{COMPLEXITY}}
|
|
12
|
+
- **Retry Count**: {{RETRY_COUNT}} / {{MAX_RETRIES}}
|
|
13
|
+
- **Previous Session Status**: {{PREV_SESSION_STATUS}}
|
|
14
|
+
- **Resume From Phase**: {{RESUME_PHASE}}
|
|
15
|
+
|
|
16
|
+
## Your Mission
|
|
17
|
+
|
|
18
|
+
You are the **refactor session orchestrator**. Execute Refactor {{REFACTOR_ID}}: "{{REFACTOR_TITLE}}".
|
|
19
|
+
|
|
20
|
+
**CRITICAL SESSION LIFECYCLE RULE**: You MUST NOT exit until ALL work is complete and session-status.json is written. When you spawn subagents, you MUST **wait for each to finish** (run_in_background=false) before proceeding. Do NOT spawn an agent in the background and exit — that kills the session.
|
|
21
|
+
|
|
22
|
+
**NON-INTERACTIVE MODE**: You are running in headless non-interactive mode. There is NO human on the other end. NEVER ask for user confirmation, NEVER wait for user input, NEVER use interactive prompts (e.g. "Would you like me to…"). If a skill has an interactive step (e.g. offer remediation, ask for approval), skip it and proceed autonomously. Make decisions based on the data available and move forward.
|
|
23
|
+
|
|
24
|
+
**MANDATORY TEAM REQUIREMENT**: You MUST use the `prizm-dev-team` agents (Dev + Reviewer). This is NON-NEGOTIABLE. All implementation and review work MUST be performed by the appropriate team agents (Dev, Reviewer). You are the orchestrator — handle coordination, planning, and commit phases directly.
|
|
25
|
+
|
|
26
|
+
**REFACTOR DOCUMENTATION POLICY**:
|
|
27
|
+
- **DEFAULT**: Run `/prizmkit-retrospective` with full sync (Job 1 + Job 2), because refactoring changes code structure and interfaces.
|
|
28
|
+
- **SKIP Job 2** only if the refactor is a pure rename with no interface changes.
|
|
29
|
+
- Commit with `refactor(<scope>):` prefix, NOT `feat:` or `fix:`
|
|
30
|
+
|
|
31
|
+
### Team Definition Reference
|
|
32
|
+
|
|
33
|
+
- **Team config**: `{{TEAM_CONFIG_PATH}}`
|
|
34
|
+
|
|
35
|
+
### Refactor Description
|
|
36
|
+
|
|
37
|
+
{{REFACTOR_DESCRIPTION}}
|
|
38
|
+
|
|
39
|
+
### Scope
|
|
40
|
+
|
|
41
|
+
**Files:**
|
|
42
|
+
{{SCOPE_FILES}}
|
|
43
|
+
|
|
44
|
+
**Modules:**
|
|
45
|
+
{{SCOPE_MODULES}}
|
|
46
|
+
|
|
47
|
+
### Behavior Preservation
|
|
48
|
+
|
|
49
|
+
- **Strategy**: {{BEHAVIOR_STRATEGY}}
|
|
50
|
+
- **Existing Tests**:
|
|
51
|
+
{{EXISTING_TESTS}}
|
|
52
|
+
- **New Tests Needed**:
|
|
53
|
+
{{NEW_TESTS_NEEDED}}
|
|
54
|
+
|
|
55
|
+
### Acceptance Criteria
|
|
56
|
+
|
|
57
|
+
{{ACCEPTANCE_CRITERIA}}
|
|
58
|
+
|
|
59
|
+
### Dependencies
|
|
60
|
+
|
|
61
|
+
{{DEPENDENCIES}}
|
|
62
|
+
|
|
63
|
+
### App Global Context
|
|
64
|
+
|
|
65
|
+
{{GLOBAL_CONTEXT}}
|
|
66
|
+
|
|
67
|
+
## Refactor Artifacts Directory
|
|
68
|
+
|
|
69
|
+
**ALWAYS** use per-refactor subdirectory `.prizmkit/refactor/{{REFACTOR_ID}}/`:
|
|
70
|
+
|
|
71
|
+
```
|
|
72
|
+
.prizmkit/refactor/{{REFACTOR_ID}}/
|
|
73
|
+
├── spec.md ← /prizmkit-plan output (goals, scope, behavior preservation)
|
|
74
|
+
├── plan.md ← /prizmkit-plan output (change approach, tasks)
|
|
75
|
+
└── refactor-report.md ← Phase 5 output (generated after commit)
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
## Execution Instructions
|
|
79
|
+
|
|
80
|
+
**YOU are the orchestrator. Execute each phase by spawning the appropriate team agent with run_in_background=false.**
|
|
81
|
+
|
|
82
|
+
## Workflow Checkpoint System
|
|
83
|
+
|
|
84
|
+
A checkpoint file tracks your progress through this workflow:
|
|
85
|
+
|
|
86
|
+
**Path**: `{{CHECKPOINT_PATH}}`
|
|
87
|
+
|
|
88
|
+
**How to use**:
|
|
89
|
+
1. **Before each step**: Read `workflow-checkpoint.json`, verify the previous step has `status: "completed"` or `status: "skipped"`. If not, complete it first.
|
|
90
|
+
2. **After completing a step**: Update the step's `status` to `"completed"` in `workflow-checkpoint.json`.
|
|
91
|
+
|
|
92
|
+
### Step 1: Initialize
|
|
93
|
+
|
|
94
|
+
#### Agent Setup
|
|
95
|
+
|
|
96
|
+
Reference `{{TEAM_CONFIG_PATH}}` for agent definitions:
|
|
97
|
+
- Dev: `{{DEV_SUBAGENT_PATH}}`
|
|
98
|
+
- Reviewer: `{{REVIEWER_SUBAGENT_PATH}}`
|
|
99
|
+
|
|
100
|
+
Create refactor artifacts directory:
|
|
101
|
+
```bash
|
|
102
|
+
mkdir -p .prizmkit/refactor/{{REFACTOR_ID}}
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
### Step 2: Pipeline Phases
|
|
106
|
+
|
|
107
|
+
#### Phase 1: Plan — Specification & Plan Generation
|
|
108
|
+
|
|
109
|
+
**Goal**: Generate spec.md and plan.md with behavior-preserving task breakdown.
|
|
110
|
+
|
|
111
|
+
Run `/prizmkit-plan` with `artifact_dir=.prizmkit/refactor/{{REFACTOR_ID}}/`:
|
|
112
|
+
- Description: "{{REFACTOR_TITLE}} — {{REFACTOR_DESCRIPTION}}"
|
|
113
|
+
- The spec.md MUST include:
|
|
114
|
+
- Goals with acceptance criteria (from the acceptance criteria above)
|
|
115
|
+
- Scope (files and modules from above)
|
|
116
|
+
- Behavior Preservation section (strategy: {{BEHAVIOR_STRATEGY}}, existing tests, what must not change)
|
|
117
|
+
- The plan.md MUST include:
|
|
118
|
+
- Change approach with behavior preservation strategy
|
|
119
|
+
- Tasks ordered by safety: safe renames first → extractions → structural changes
|
|
120
|
+
- Every task ends with "run test suite to verify behavior preserved"
|
|
121
|
+
- Rollback strategy
|
|
122
|
+
|
|
123
|
+
Resolve any `[NEEDS CLARIFICATION]` markers using the refactor description — do NOT pause for interactive input.
|
|
124
|
+
|
|
125
|
+
- **CP-RF-1**: Both `spec.md` and `plan.md` exist in `.prizmkit/refactor/{{REFACTOR_ID}}/`
|
|
126
|
+
- **Checkpoint update**: set step `prizmkit-plan` to `"completed"` in `{{CHECKPOINT_PATH}}`
|
|
127
|
+
|
|
128
|
+
---
|
|
129
|
+
|
|
130
|
+
#### Phase 2: Implement — Behavior-Preserving Refactoring
|
|
131
|
+
|
|
132
|
+
**Goal**: Execute all tasks from plan.md while preserving existing behavior.
|
|
133
|
+
|
|
134
|
+
- Spawn Dev agent (Agent tool, subagent_type="prizm-dev-team-dev", run_in_background=false)
|
|
135
|
+
Prompt: "Read {{DEV_SUBAGENT_PATH}}. For refactor {{REFACTOR_ID}} ('{{REFACTOR_TITLE}}'):
|
|
136
|
+
1. Read `.prizmkit/refactor/{{REFACTOR_ID}}/spec.md` and `.prizmkit/refactor/{{REFACTOR_ID}}/plan.md`
|
|
137
|
+
2. Read `.prizm-docs/` for affected modules (TRAPS, RULES, PATTERNS)
|
|
138
|
+
3. Before making any changes, run the existing test suite to establish a green baseline
|
|
139
|
+
4. Execute each task from plan.md in order:
|
|
140
|
+
- Apply the change
|
|
141
|
+
- Run the test suite after EVERY task — all tests MUST pass
|
|
142
|
+
- If tests fail: revert the task, analyze why, try alternative approach
|
|
143
|
+
- Mark task as [x] in plan.md after tests pass
|
|
144
|
+
5. Do NOT change behavior — only improve structure
|
|
145
|
+
6. If the refactor involves multiple files: run `/compact` after completing half the tasks to free context budget. If `/compact` is unavailable, continue without it.
|
|
146
|
+
7. After all tasks complete, run the full test suite one final time
|
|
147
|
+
"
|
|
148
|
+
- **Wait for Dev to return**
|
|
149
|
+
- If Dev reports test failures that cannot be resolved after 3 attempts: escalate, write status="failed"
|
|
150
|
+
- **CP-RF-2**: All tasks completed, all tests green
|
|
151
|
+
- **Checkpoint update**: set step `prizmkit-implement` to `"completed"` in `{{CHECKPOINT_PATH}}`
|
|
152
|
+
|
|
153
|
+
---
|
|
154
|
+
|
|
155
|
+
#### Phase 3: Review — Code Review & Behavior Verification
|
|
156
|
+
|
|
157
|
+
**Goal**: Verify refactoring quality and behavior preservation.
|
|
158
|
+
|
|
159
|
+
- Spawn Reviewer agent (Agent tool, subagent_type="prizm-dev-team-reviewer", run_in_background=false)
|
|
160
|
+
Prompt: "Read {{REVIEWER_SUBAGENT_PATH}}. For refactor {{REFACTOR_ID}}:
|
|
161
|
+
1. Read `.prizmkit/refactor/{{REFACTOR_ID}}/spec.md` for goals and behavior preservation contracts
|
|
162
|
+
2. Read `.prizmkit/refactor/{{REFACTOR_ID}}/plan.md` for architecture decisions and completed tasks
|
|
163
|
+
3. Run `/prizmkit-code-review` with artifact_dir=.prizmkit/refactor/{{REFACTOR_ID}}/ scoped to CHANGED FILES ONLY (both phases: diagnostic + fix strategy)
|
|
164
|
+
4. Run full test suite and verify ALL tests pass
|
|
165
|
+
5. Write integration tests covering all goals from spec.md
|
|
166
|
+
6. review-report.md will be written to .prizmkit/refactor/{{REFACTOR_ID}}/ by prizmkit-code-review
|
|
167
|
+
7. Report: number of findings found, or 'no findings' if clean
|
|
168
|
+
"
|
|
169
|
+
- **Wait for Reviewer to return**
|
|
170
|
+
- **Verdict decision** (L4 responsibility): If findings exist → return to Phase 2 for refinement (max 2 review rounds). If no findings → proceed.
|
|
171
|
+
- **CP-RF-3**: Code review passes, all tests green, behavior preserved
|
|
172
|
+
- **Checkpoint update**: set step `prizmkit-code-review` to `"completed"` in `{{CHECKPOINT_PATH}}`
|
|
173
|
+
|
|
174
|
+
---
|
|
175
|
+
|
|
176
|
+
#### Phase 4: Commit & Report
|
|
177
|
+
|
|
178
|
+
**Goal**: Commit the refactor, update docs, generate report.
|
|
179
|
+
|
|
180
|
+
**This phase is executed by YOU (the orchestrator), NOT a subagent.**
|
|
181
|
+
|
|
182
|
+
1. Run `/prizmkit-retrospective` (full sync — Job 1 + Job 2) to update `.prizm-docs/` with structural changes
|
|
183
|
+
|
|
184
|
+
2. Run `/prizmkit-committer` with:
|
|
185
|
+
- Commit message: `refactor({{REFACTOR_ID}}): {{REFACTOR_TITLE}}`
|
|
186
|
+
- Include all refactored files and any new/updated tests
|
|
187
|
+
- Do NOT push (user will push manually)
|
|
188
|
+
|
|
189
|
+
3. Write the refactor report to `.prizmkit/refactor/{{REFACTOR_ID}}/refactor-report.md`
|
|
190
|
+
|
|
191
|
+
The refactor-report.md MUST contain these sections:
|
|
192
|
+
- Refactor Summary (ID, title, type, status, phases completed)
|
|
193
|
+
- What Changed (files modified, structural changes made, diff summary)
|
|
194
|
+
- Behavior Verification (test suite results before/after, specific tests exercised)
|
|
195
|
+
- Code Quality Metrics (if measurable: files consolidated, duplication reduced, etc.)
|
|
196
|
+
- Acceptance Criteria Verification (checklist with pass/fail for each criterion)
|
|
197
|
+
|
|
198
|
+
4. Write completion summary for downstream dependency context:
|
|
199
|
+
|
|
200
|
+
Write `.prizmkit/refactor/{{REFACTOR_ID}}/completion-summary.json` — this is NOT committed to git. The pipeline runner reads it to propagate context to dependent refactors.
|
|
201
|
+
```json
|
|
202
|
+
{
|
|
203
|
+
"completion_notes": [
|
|
204
|
+
"<each item: one key structural change that downstream refactors may need to know>",
|
|
205
|
+
"Example: Extracted shared validation logic into src/utils/validation.ts",
|
|
206
|
+
"Example: Renamed UserService → AuthService, moved from src/services/ to src/auth/",
|
|
207
|
+
"Example: Decoupled payment module from user module via PaymentGateway interface"
|
|
208
|
+
]
|
|
209
|
+
}
|
|
210
|
+
```
|
|
211
|
+
Rules: focus on structural changes, new module boundaries, renamed/moved files, changed interfaces. 3-8 notes, each under 120 chars.
|
|
212
|
+
|
|
213
|
+
- **CP-RF-4**: Commit recorded, refactor-report.md written, .prizm-docs/ updated
|
|
214
|
+
- **Checkpoint update**: set steps `prizmkit-committer` and `refactor-report` to `"completed"` in `{{CHECKPOINT_PATH}}`
|
|
215
|
+
|
|
216
|
+
### Step 3: Report Session Status
|
|
217
|
+
|
|
218
|
+
**CRITICAL**: Before this session ends, you MUST write the session status file.
|
|
219
|
+
|
|
220
|
+
Write to: `{{SESSION_STATUS_PATH}}`
|
|
221
|
+
|
|
222
|
+
```json
|
|
223
|
+
{
|
|
224
|
+
"session_id": "{{SESSION_ID}}",
|
|
225
|
+
"refactor_id": "{{REFACTOR_ID}}",
|
|
226
|
+
"status": "<success|partial|failed>",
|
|
227
|
+
"completed_phases": [1, 2, 3, 4],
|
|
228
|
+
"current_phase": 4,
|
|
229
|
+
"checkpoint_reached": "CP-RF-4",
|
|
230
|
+
"errors": [],
|
|
231
|
+
"can_resume": false,
|
|
232
|
+
"resume_from_phase": null,
|
|
233
|
+
"artifacts": {
|
|
234
|
+
"spec_path": ".prizmkit/refactor/{{REFACTOR_ID}}/spec.md",
|
|
235
|
+
"plan_path": ".prizmkit/refactor/{{REFACTOR_ID}}/plan.md",
|
|
236
|
+
"report_path": ".prizmkit/refactor/{{REFACTOR_ID}}/refactor-report.md"
|
|
237
|
+
},
|
|
238
|
+
"git_commit": "<commit hash>",
|
|
239
|
+
"behavior_preserved": true,
|
|
240
|
+
"timestamp": "{{TIMESTAMP}}"
|
|
241
|
+
}
|
|
242
|
+
```
|
|
243
|
+
|
|
244
|
+
**Status values**: `success` (all phases done) | `partial` (can resume) | `failed` (unrecoverable)
|
|
245
|
+
|
|
246
|
+
## Critical Paths
|
|
247
|
+
|
|
248
|
+
| Resource | Path |
|
|
249
|
+
|----------|------|
|
|
250
|
+
| Team Definition (source of truth) | `{{TEAM_CONFIG_PATH}}` |
|
|
251
|
+
| Refactor Artifacts Dir | `.prizmkit/refactor/{{REFACTOR_ID}}/` |
|
|
252
|
+
| Spec | `.prizmkit/refactor/{{REFACTOR_ID}}/spec.md` |
|
|
253
|
+
| Plan | `.prizmkit/refactor/{{REFACTOR_ID}}/plan.md` |
|
|
254
|
+
| Refactor Report | `.prizmkit/refactor/{{REFACTOR_ID}}/refactor-report.md` |
|
|
255
|
+
| Dev Agent Def | {{DEV_SUBAGENT_PATH}} |
|
|
256
|
+
| Reviewer Agent Def | {{REVIEWER_SUBAGENT_PATH}} |
|
|
257
|
+
| Session Status Output | {{SESSION_STATUS_PATH}} |
|
|
258
|
+
| Workflow Checkpoint | {{CHECKPOINT_PATH}} |
|
|
259
|
+
| Project Root | {{PROJECT_ROOT}} |
|
|
260
|
+
|
|
261
|
+
## Reminders
|
|
262
|
+
|
|
263
|
+
- **MANDATORY**: Use `prizm-dev-team` agents — single-agent execution is FORBIDDEN
|
|
264
|
+
- **Behavior preservation is the #1 priority**: If tests break, stop and fix before proceeding
|
|
265
|
+
- **Run tests after EVERY task** — not just at the end
|
|
266
|
+
- Use `/prizmkit-plan` with `artifact_dir=.prizmkit/refactor/{{REFACTOR_ID}}/` for spec + plan generation
|
|
267
|
+
- **Commit with** `refactor(<scope>):` prefix, NOT `feat:` or `fix:`
|
|
268
|
+
- **Run full retrospective** (Job 1 + Job 2) — refactoring changes code structure
|
|
269
|
+
- ALWAYS write session-status.json before exiting
|
|
270
|
+
- Do NOT use `run_in_background=true` when spawning agents
|
|
@@ -164,9 +164,10 @@
|
|
|
164
164
|
"in_progress",
|
|
165
165
|
"completed",
|
|
166
166
|
"failed",
|
|
167
|
-
"skipped"
|
|
167
|
+
"skipped",
|
|
168
|
+
"auto_skipped"
|
|
168
169
|
],
|
|
169
|
-
"description": "Refactor status"
|
|
170
|
+
"description": "Refactor status. Subset of feature status enum."
|
|
170
171
|
},
|
|
171
172
|
"model": {
|
|
172
173
|
"type": "string",
|
|
@@ -176,6 +177,13 @@
|
|
|
176
177
|
"type": "integer",
|
|
177
178
|
"description": "Estimated number of lines affected by this refactor"
|
|
178
179
|
},
|
|
180
|
+
"completion_notes": {
|
|
181
|
+
"type": "array",
|
|
182
|
+
"items": {
|
|
183
|
+
"type": "string"
|
|
184
|
+
},
|
|
185
|
+
"description": "AI-generated summary of key changes from this refactor session. Used to provide rich dependency context to downstream refactors. Each item is a concise statement about what was refactored (e.g. modules extracted, files restructured, interfaces changed)."
|
|
186
|
+
},
|
|
179
187
|
"critic": {
|
|
180
188
|
"type": "boolean",
|
|
181
189
|
"description": "Enable adversarial critic review for this refactor. Default: true for critical/high priority refactors, false for others.",
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
## Context Budget Rules (CRITICAL — read before any phase)
|
|
2
2
|
|
|
3
|
-
You are running in headless mode with a FINITE context window. Exceeding it will crash the session and lose all work. Follow these rules strictly:
|
|
3
|
+
You are running in **headless non-interactive mode** with a FINITE context window. Exceeding it will crash the session and lose all work. Follow these rules strictly:
|
|
4
|
+
|
|
5
|
+
0. **NON-INTERACTIVE MODE** — There is NO human on the other end. NEVER ask for user confirmation, NEVER wait for user input, NEVER use interactive prompts (e.g. "Would you like me to…"). If a skill has an interactive step (e.g. offer remediation, ask for approval), skip it and proceed autonomously. Make decisions based on the data available and move forward.
|
|
4
6
|
|
|
5
7
|
1. **context-snapshot.md is your single source of truth** — After it is built, ALWAYS read context-snapshot.md instead of re-reading individual source files
|
|
6
8
|
2. **Never re-read your own writes** — After you create/modify a file, do NOT read it back to verify. Trust your write was correct.
|
|
@@ -6,4 +6,5 @@
|
|
|
6
6
|
| Context Snapshot | `.prizmkit/specs/{{FEATURE_SLUG}}/context-snapshot.md` |
|
|
7
7
|
| Dev Agent Def | {{DEV_SUBAGENT_PATH}} |
|
|
8
8
|
| Reviewer Agent Def | {{REVIEWER_SUBAGENT_PATH}} |
|
|
9
|
+
| Critic Agent Def (if enabled) | {{CRITIC_SUBAGENT_PATH}} |
|
|
9
10
|
| Project Root | {{PROJECT_ROOT}} |
|
|
@@ -15,6 +15,8 @@
|
|
|
15
15
|
|
|
16
16
|
### Dependencies (Already Completed)
|
|
17
17
|
|
|
18
|
+
> Below are features that this feature depends on, along with their key implementation notes. Use this context to understand what has already been built and what interfaces/APIs/models are available.
|
|
19
|
+
|
|
18
20
|
{{COMPLETED_DEPENDENCIES}}
|
|
19
21
|
|
|
20
22
|
### App Global Context
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
### Architecture Sync & Commit (SINGLE COMMIT) — DO NOT SKIP
|
|
2
2
|
|
|
3
|
-
**
|
|
3
|
+
**Bug Fix Documentation Policy**:
|
|
4
|
+
- DEFAULT: Run `/prizmkit-retrospective` with structural sync only (update file counts, interfaces, dependencies). Skip knowledge injection.
|
|
5
|
+
- UPDATE DOCS (run full retrospective — Job 1 + Job 2) when bug fix causes: interface signature changes, dependency additions/removals, observable behavior changes to existing features, or newly discovered TRAPs.
|
|
6
|
+
- Simple bugs: No new spec.md/plan.md needed. Use fast path.
|
|
7
|
+
- Complex bugs (multi-module, cascading): Use `/prizmkit-plan` with `artifact_dir=.prizmkit/bugfix/<BUG_ID>/`.
|
|
8
|
+
- Commit prefix: `fix(<scope>):` (not `feat:`).
|
|
4
9
|
|
|
5
10
|
**a.** Check if feature already committed:
|
|
6
11
|
```bash
|
|
@@ -15,7 +20,7 @@ git log --oneline | grep "{{FEATURE_ID}}" | head -3
|
|
|
15
20
|
- **L2 coverage check**: For any module/sub-module with source files created or significantly modified in this session but no L2 `.prizm` doc — evaluate whether L2 is warranted and create if so. The current session has the best context for accurate KEY_FILES, TRAPS, and DECISIONS.
|
|
16
21
|
- Stage doc changes: `git add .prizm-docs/`
|
|
17
22
|
⚠️ Do NOT commit here. Only stage.
|
|
18
|
-
- **For bug-fix sessions**: structural sync
|
|
23
|
+
- **For bug-fix sessions**: structural sync (Job 1) by default. Run knowledge injection (Job 2) when the fix causes interface signature changes, dependency additions/removals, observable behavior changes, or reveals new TRAPs
|
|
19
24
|
|
|
20
25
|
**c.** Stage all feature code explicitly (NEVER use `git add -A` or `git add .`):
|
|
21
26
|
```bash
|
|
@@ -35,5 +40,27 @@ git status --short
|
|
|
35
40
|
```
|
|
36
41
|
Working tree MUST be clean after this step. If any feature-related files remain, stage them into the SAME commit via `git add <file> && git commit --amend --no-edit`, do NOT create a separate commit.
|
|
37
42
|
|
|
43
|
+
**f.** Write completion summary for downstream dependency context:
|
|
44
|
+
|
|
45
|
+
Write `.prizmkit/specs/{{FEATURE_SLUG}}/completion-summary.json` with the key changes from this session. This file is NOT committed to git — the pipeline runner reads it to propagate context to dependent features.
|
|
46
|
+
|
|
47
|
+
```json
|
|
48
|
+
{
|
|
49
|
+
"completion_notes": [
|
|
50
|
+
"<each item: one key change, API, model, or integration point that downstream features may need>",
|
|
51
|
+
"Example: Added User model (id, email, password_hash, display_name) in prisma/schema.prisma",
|
|
52
|
+
"Example: POST /api/auth/register and POST /api/auth/login endpoints in src/api/auth.ts",
|
|
53
|
+
"Example: Auth middleware in src/middleware/auth.ts — validates JWT on protected routes"
|
|
54
|
+
]
|
|
55
|
+
}
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
Rules for writing completion notes:
|
|
59
|
+
- Focus on **what downstream features need to know**: new APIs, models, exported functions, key file paths
|
|
60
|
+
- Each note should be self-contained and concise (one line, under 120 characters preferred)
|
|
61
|
+
- Include 3-8 notes covering the most important changes
|
|
62
|
+
- Do NOT include test files, config changes, or internal implementation details unless they affect other features
|
|
63
|
+
- If this feature has no downstream dependents, still write the summary (it serves as documentation)
|
|
64
|
+
|
|
38
65
|
|
|
39
66
|
**Checkpoint update**: After `/prizmkit-retrospective` completes, update `workflow-checkpoint.json` — set step `prizmkit-retrospective` to `"completed"`. After `/prizmkit-committer` completes, set step `prizmkit-committer` to `"completed"`.
|
|
@@ -25,5 +25,27 @@ git status --short
|
|
|
25
25
|
```
|
|
26
26
|
Working tree MUST be clean after this step. If any feature-related files remain, stage them into the SAME commit via `git add <file> && git commit --amend --no-edit`, do NOT create a separate commit.
|
|
27
27
|
|
|
28
|
+
**e.** Write completion summary for downstream dependency context:
|
|
29
|
+
|
|
30
|
+
Write `.prizmkit/specs/{{FEATURE_SLUG}}/completion-summary.json` with the key changes from this session. This file is NOT committed to git — the pipeline runner reads it to propagate context to dependent features.
|
|
31
|
+
|
|
32
|
+
```json
|
|
33
|
+
{
|
|
34
|
+
"completion_notes": [
|
|
35
|
+
"<each item: one key change, API, model, or integration point that downstream features may need>",
|
|
36
|
+
"Example: Added User model (id, email, password_hash, display_name) in prisma/schema.prisma",
|
|
37
|
+
"Example: POST /api/auth/register and POST /api/auth/login endpoints in src/api/auth.ts",
|
|
38
|
+
"Example: Auth middleware in src/middleware/auth.ts — validates JWT on protected routes"
|
|
39
|
+
]
|
|
40
|
+
}
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
Rules for writing completion notes:
|
|
44
|
+
- Focus on **what downstream features need to know**: new APIs, models, exported functions, key file paths
|
|
45
|
+
- Each note should be self-contained and concise (one line, under 120 characters preferred)
|
|
46
|
+
- Include 3-8 notes covering the most important changes
|
|
47
|
+
- Do NOT include test files, config changes, or internal implementation details unless they affect other features
|
|
48
|
+
- If this feature has no downstream dependents, still write the summary (it serves as documentation)
|
|
49
|
+
|
|
28
50
|
|
|
29
51
|
**Checkpoint update**: After `/prizmkit-retrospective` completes, update `workflow-checkpoint.json` — set step `prizmkit-retrospective` to `"completed"`. After `/prizmkit-committer` completes, set step `prizmkit-committer` to `"completed"`.
|
|
@@ -7,7 +7,7 @@ You just implemented this feature — you know the project's tech stack and buil
|
|
|
7
7
|
3. **Assess and record** — append to context-snapshot.md:
|
|
8
8
|
- **ALL builds pass** → `## Deploy Verification: PASS` — proceed to commit
|
|
9
9
|
- **Some builds fail with fixable errors** → fix and re-verify (already handled in step 2)
|
|
10
|
-
- **Cannot build locally** (missing system-level deps you cannot install) → Generate
|
|
10
|
+
- **Cannot build locally** (missing system-level deps you cannot install) → Generate `.prizmkit/deploy.md` with:
|
|
11
11
|
```
|
|
12
12
|
# Local Development Setup
|
|
13
13
|
|
|
@@ -23,7 +23,7 @@ You just implemented this feature — you know the project's tech stack and buil
|
|
|
23
23
|
## Verify
|
|
24
24
|
[how to confirm the app is running correctly]
|
|
25
25
|
```
|
|
26
|
-
Record: `## Deploy Verification: PARTIAL — see
|
|
26
|
+
Record: `## Deploy Verification: PARTIAL — see .prizmkit/deploy.md for missing prerequisites`
|
|
27
27
|
|
|
28
28
|
Deploy verification does NOT block the commit, but you MUST attempt it.
|
|
29
29
|
|
|
@@ -11,16 +11,18 @@
|
|
|
11
11
|
|
|
12
12
|
Wait for Reviewer to return.
|
|
13
13
|
|
|
14
|
-
**Gate Check — Review
|
|
15
|
-
After Reviewer agent returns, verify the
|
|
14
|
+
**Gate Check — Review Report**:
|
|
15
|
+
After Reviewer agent returns, verify the review report was written:
|
|
16
16
|
```bash
|
|
17
|
-
grep -q "##
|
|
17
|
+
grep -q "## Findings" .prizmkit/specs/{{FEATURE_SLUG}}/review-report.md && echo "GATE:PASS" || echo "GATE:MISSING"
|
|
18
18
|
```
|
|
19
|
-
If GATE:MISSING — send message to Reviewer (re-spawn if needed): "Write
|
|
19
|
+
If GATE:MISSING — send message to Reviewer (re-spawn if needed): "Write review-report.md to .prizmkit/specs/{{FEATURE_SLUG}}/ with findings."
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
**Verdict decision** (L4 responsibility): Read review-report.md findings count. If findings exist → NEEDS_FIXES. If no findings → PASS.
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
- If NEEDS_FIXES: spawn Dev to fix (Dev reads Fix Instructions in review-report.md), re-run Review (max 3 rounds)
|
|
24
|
+
|
|
25
|
+
**CP-3**: Tests pass, no unresolved findings.
|
|
24
26
|
|
|
25
27
|
|
|
26
28
|
**Checkpoint update**: Update `workflow-checkpoint.json` — set step `prizmkit-code-review` to `"completed"`.
|
|
@@ -11,18 +11,20 @@
|
|
|
11
11
|
|
|
12
12
|
Wait for Reviewer to return.
|
|
13
13
|
|
|
14
|
-
**Gate Check — Review
|
|
15
|
-
After Reviewer agent returns, verify the
|
|
14
|
+
**Gate Check — Review Report**:
|
|
15
|
+
After Reviewer agent returns, verify the review report was written:
|
|
16
16
|
```bash
|
|
17
|
-
grep -q "##
|
|
17
|
+
grep -q "## Findings" .prizmkit/specs/{{FEATURE_SLUG}}/review-report.md && echo "GATE:PASS" || echo "GATE:MISSING"
|
|
18
18
|
```
|
|
19
|
-
If GATE:MISSING — send message to Reviewer (re-spawn if needed): "Write
|
|
19
|
+
If GATE:MISSING — send message to Reviewer (re-spawn if needed): "Write review-report.md to .prizmkit/specs/{{FEATURE_SLUG}}/ with findings."
|
|
20
|
+
|
|
21
|
+
**Verdict decision** (L4 responsibility): Read review-report.md findings count. If findings exist → NEEDS_FIXES. If no findings → PASS.
|
|
20
22
|
|
|
21
23
|
- If NEEDS_FIXES: spawn Dev to fix with this prompt:
|
|
22
24
|
> {{AGENT_PROMPT_DEV_FIX}}
|
|
23
25
|
Then re-run Review (max 3 rounds).
|
|
24
26
|
|
|
25
|
-
**CP-3**: Integration tests pass,
|
|
27
|
+
**CP-3**: Integration tests pass, no unresolved findings.
|
|
26
28
|
|
|
27
29
|
|
|
28
30
|
**Checkpoint update**: Update `workflow-checkpoint.json` — set step `prizmkit-code-review` to `"completed"`.
|
|
@@ -37,7 +37,7 @@ If `EXISTING_CODE` is non-empty: your spec/plan/tasks must reflect this existing
|
|
|
37
37
|
Identify the top-level source directories from the results.
|
|
38
38
|
3. Scan the detected source directories for files related to this feature; read each one
|
|
39
39
|
4. Write `.prizmkit/specs/{{FEATURE_SLUG}}/context-snapshot.md`:
|
|
40
|
-
- **Section 1 —
|
|
40
|
+
- **Section 1 — Task Brief**: task description + acceptance criteria (copy from above)
|
|
41
41
|
- **Section 2 — Project Structure**: run the following to get a visual directory tree, then paste output:
|
|
42
42
|
```bash
|
|
43
43
|
find . -maxdepth 2 -type d -not -path '*/node_modules/*' -not -path '*/.git/*' -not -path '*/dist/*' -not -path '*/build/*' -not -path '*/__pycache__/*' -not -path '*/vendor/*' | sed -e 's;[^/]*/;|____;g;s;____|; |;g'
|
|
@@ -67,8 +67,8 @@ If `EXISTING_CODE` is non-empty: your spec/plan/tasks must reflect this existing
|
|
|
67
67
|
ls .prizmkit/specs/{{FEATURE_SLUG}}/spec.md .prizmkit/specs/{{FEATURE_SLUG}}/plan.md 2>/dev/null
|
|
68
68
|
```
|
|
69
69
|
|
|
70
|
-
- spec.md missing: Run `/prizmkit-plan` → generate spec.md. Resolve any `[NEEDS CLARIFICATION]` markers using the
|
|
71
|
-
- plan.md missing: Run `/prizmkit-plan` → generate plan.md (
|
|
70
|
+
- spec.md missing: Run `/prizmkit-plan` → generate spec.md. Resolve any `[NEEDS CLARIFICATION]` markers using the task description — do NOT pause for interactive input.
|
|
71
|
+
- plan.md missing: Run `/prizmkit-plan` → generate plan.md (change approach, components, interface design, data model, testing strategy, risk assessment, and Tasks section with `[ ]` checkboxes)
|
|
72
72
|
|
|
73
73
|
> All files go under `.prizmkit/specs/{{FEATURE_SLUG}}/`. Confirm each with `ls` after writing.
|
|
74
74
|
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.1.
|
|
2
|
+
"version": "1.1.9",
|
|
3
3
|
"skills": {
|
|
4
4
|
"prizm-kit": {
|
|
5
5
|
"description": "Full-lifecycle dev toolkit. Covers spec-driven development, Prizm context docs, code quality, debugging, deployment, and knowledge management.",
|
|
6
6
|
"tier": "foundation",
|
|
7
7
|
"category": "prizmkit-skill",
|
|
8
|
-
"hasAssets":
|
|
8
|
+
"hasAssets": false,
|
|
9
9
|
"hasScripts": false
|
|
10
10
|
},
|
|
11
11
|
"prizmkit-init": {
|
|
@@ -16,19 +16,12 @@
|
|
|
16
16
|
"hasScripts": false
|
|
17
17
|
},
|
|
18
18
|
"prizmkit-plan": {
|
|
19
|
-
"description": "Specify and plan
|
|
19
|
+
"description": "Specify and plan tasks: natural language → spec.md → plan.md with architecture and executable tasks.",
|
|
20
20
|
"tier": "1",
|
|
21
21
|
"category": "prizmkit-skill",
|
|
22
22
|
"hasAssets": true,
|
|
23
23
|
"hasScripts": false
|
|
24
24
|
},
|
|
25
|
-
"prizmkit-analyze": {
|
|
26
|
-
"description": "Cross-document consistency analysis for spec.md and plan.md. Check if spec and plan are aligned, validate documents before coding.",
|
|
27
|
-
"tier": "1",
|
|
28
|
-
"category": "prizmkit-skill",
|
|
29
|
-
"hasAssets": false,
|
|
30
|
-
"hasScripts": false
|
|
31
|
-
},
|
|
32
25
|
"prizmkit-implement": {
|
|
33
26
|
"description": "Execute implementation following plan.md Tasks section with TDD approach.",
|
|
34
27
|
"tier": "1",
|
|
@@ -65,19 +58,12 @@
|
|
|
65
58
|
"hasScripts": false
|
|
66
59
|
},
|
|
67
60
|
"prizmkit-deploy": {
|
|
68
|
-
"description": "Generate or update deployment documentation (
|
|
61
|
+
"description": "Generate or update deployment documentation (.prizmkit/deploy.md) by scanning project state and deploy strategy. On-demand skill.",
|
|
69
62
|
"tier": "1",
|
|
70
63
|
"category": "prizmkit-skill",
|
|
71
64
|
"hasAssets": true,
|
|
72
65
|
"hasScripts": false
|
|
73
66
|
},
|
|
74
|
-
"prizmkit-verify": {
|
|
75
|
-
"description": "Automated framework verification for PrizmKit's 4-layer architecture. Checks structural integrity, contract consistency, and cross-scenario alignment.",
|
|
76
|
-
"tier": "1",
|
|
77
|
-
"category": "prizmkit-skill",
|
|
78
|
-
"hasAssets": false,
|
|
79
|
-
"hasScripts": true
|
|
80
|
-
},
|
|
81
67
|
"feature-workflow": {
|
|
82
68
|
"description": "One-stop entry point for feature development. Orchestrates feature-planner → feature-pipeline-launcher → background execution. Handles multi-feature batch development from a single request.",
|
|
83
69
|
"tier": "companion",
|
|
@@ -175,7 +161,6 @@
|
|
|
175
161
|
"prizmkit-init",
|
|
176
162
|
"prizmkit-prizm-docs",
|
|
177
163
|
"prizmkit-plan",
|
|
178
|
-
"prizmkit-analyze",
|
|
179
164
|
"prizmkit-implement",
|
|
180
165
|
"prizmkit-code-review",
|
|
181
166
|
"prizmkit-committer",
|
|
@@ -191,8 +176,7 @@
|
|
|
191
176
|
"refactor-planner",
|
|
192
177
|
"refactor-pipeline-launcher",
|
|
193
178
|
"bug-fix-workflow",
|
|
194
|
-
"recovery-workflow"
|
|
195
|
-
"prizmkit-verify"
|
|
179
|
+
"recovery-workflow"
|
|
196
180
|
]
|
|
197
181
|
},
|
|
198
182
|
"minimal": {
|
|
@@ -202,7 +186,6 @@
|
|
|
202
186
|
"prizmkit-init",
|
|
203
187
|
"prizmkit-prizm-docs",
|
|
204
188
|
"prizmkit-plan",
|
|
205
|
-
"prizmkit-analyze",
|
|
206
189
|
"prizmkit-implement",
|
|
207
190
|
"prizmkit-code-review",
|
|
208
191
|
"prizmkit-committer",
|