prizmkit 1.0.131 → 1.0.132
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
CHANGED
|
@@ -11,6 +11,20 @@ Plan deliverable features for dev-pipeline in two modes:
|
|
|
11
11
|
|
|
12
12
|
Always produce a validated `feature-list.json` that conforms to `dev-pipeline-feature-list`.
|
|
13
13
|
|
|
14
|
+
## Invocation Commitment (Hard Rule)
|
|
15
|
+
|
|
16
|
+
**When the user invokes `/app-planner`, you MUST execute the app-planner workflow.** You must NEVER:
|
|
17
|
+
- Decide on the user's behalf that the task "doesn't need app-planner"
|
|
18
|
+
- Skip app-planner to jump directly to spec/plan/implement or any other skill
|
|
19
|
+
- Bypass the interactive phases because you judge the task to be "simple" or "obvious"
|
|
20
|
+
|
|
21
|
+
If you believe the task is better suited for a different workflow (e.g., fast path via `/prizmkit-plan`), you MUST:
|
|
22
|
+
1. **Explain why** you think a different path is more appropriate
|
|
23
|
+
2. **Ask the user explicitly** whether they want to switch or continue with app-planner
|
|
24
|
+
3. **Only switch if the user confirms** — otherwise proceed with app-planner as invoked
|
|
25
|
+
|
|
26
|
+
The user chose this skill intentionally. Respect that choice.
|
|
27
|
+
|
|
14
28
|
## Scope Boundary (Hard Rule)
|
|
15
29
|
|
|
16
30
|
**This skill is PLANNING ONLY.** You must NEVER:
|
|
@@ -222,11 +236,12 @@ For simple incremental planning, skip detailed Phase 2-3 analysis to accelerate
|
|
|
222
236
|
|
|
223
237
|
### Fast Path Workflow
|
|
224
238
|
1. Read existing `feature-list.json` and confirm scope
|
|
225
|
-
2.
|
|
226
|
-
3.
|
|
227
|
-
4.
|
|
228
|
-
5.
|
|
229
|
-
6. If
|
|
239
|
+
2. **User confirmation (mandatory)** — Tell the user: "This qualifies for fast-path (simple incremental addition). Skip detailed Phase 2-3 analysis and draft directly? Or use full workflow?" Only proceed with fast path if user confirms.
|
|
240
|
+
3. Generate next sequential feature IDs
|
|
241
|
+
4. Draft features (title + description + acceptance_criteria + dependencies)
|
|
242
|
+
5. Run validation script immediately
|
|
243
|
+
6. If valid → summarize and recommend next step
|
|
244
|
+
7. If invalid → apply fixes, re-validate (max 2 attempts, then escalate to full workflow)
|
|
230
245
|
|
|
231
246
|
### When NOT to Use Fast Path
|
|
232
247
|
- New app planning (always use full workflow)
|
|
@@ -238,10 +253,12 @@ For simple incremental planning, skip detailed Phase 2-3 analysis to accelerate
|
|
|
238
253
|
### Example Fast Path Session
|
|
239
254
|
```
|
|
240
255
|
User: "Add email verification to existing user module."
|
|
241
|
-
AI: [Detects incremental mode]
|
|
256
|
+
AI: [Detects incremental mode]
|
|
242
257
|
AI: [Checks existing plan: found 8 features, user module exists]
|
|
243
258
|
AI: [Qualifies for fast path: 1 feature, low complexity, ≤2 deps]
|
|
244
|
-
AI: "
|
|
259
|
+
AI: "This qualifies for fast-path. Skip detailed analysis and draft directly? Or use full workflow?"
|
|
260
|
+
User: "Fast path is fine."
|
|
261
|
+
AI: "Drafting F-009..."
|
|
245
262
|
AI: [Validates immediately]
|
|
246
263
|
AI: "Ready to proceed to dev-pipeline."
|
|
247
264
|
```
|