mindsystem-cc 4.5.0 → 4.5.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.
|
@@ -86,7 +86,7 @@ Check for `.planning/codebase/` and load relevant documents based on phase type.
|
|
|
86
86
|
- Perform mandatory discovery (Level 0-3 as appropriate)
|
|
87
87
|
- Scan project history via context scanner script (prior decisions, issues, debug resolutions, adhoc learnings, cross-milestone patterns)
|
|
88
88
|
- Break phase into tasks
|
|
89
|
-
-
|
|
89
|
+
- Confirm task breakdown with user (single plan: confirm tasks; multi-plan: confirm tasks + grouping)
|
|
90
90
|
- Discover relevant project skills, confirm with user
|
|
91
91
|
- Hand off tasks + proposed grouping + confirmed skills to plan-writer subagent
|
|
92
92
|
- Create PLAN.md file(s) with executable structure
|
|
@@ -290,7 +290,15 @@ MULTI_PLAN=$(ms-tools config-get multi_plan --default "false")
|
|
|
290
290
|
|
|
291
291
|
**If `false` (default) — single plan mode:**
|
|
292
292
|
|
|
293
|
-
All tasks go into Plan 01, Wave 1. No dependency analysis, clustering, or budget estimation.
|
|
293
|
+
All tasks go into Plan 01, Wave 1. No dependency analysis, clustering, or budget estimation.
|
|
294
|
+
|
|
295
|
+
**Confirm task breakdown via AskUserQuestion:**
|
|
296
|
+
- header: "Tasks Identified"
|
|
297
|
+
- question: "Ready to write the plan with these tasks?"
|
|
298
|
+
- Options: "Looks good, write the plan", "I want to adjust"
|
|
299
|
+
|
|
300
|
+
**"Looks good, write the plan":** Proceed to load_skills.
|
|
301
|
+
**"I want to adjust":** User describes changes in free-text. Apply adjustments, re-present tasks, and confirm again.
|
|
294
302
|
|
|
295
303
|
**If `true` — multi-plan mode:**
|
|
296
304
|
|
|
@@ -483,7 +491,9 @@ Extract:
|
|
|
483
491
|
</step>
|
|
484
492
|
|
|
485
493
|
<step name="risk_decision">
|
|
486
|
-
**
|
|
494
|
+
**MANDATORY gate — present risk score via AskUserQuestion. Do not skip or inline with other output.**
|
|
495
|
+
|
|
496
|
+
After parsing the plan-writer results, present the risk assessment as a standalone AskUserQuestion before showing anything else. Do not combine this with the "Next Up" block or any other output.
|
|
487
497
|
|
|
488
498
|
**Present via AskUserQuestion based on tier from subagent:**
|
|
489
499
|
|