mindsystem-cc 4.3.1 → 4.4.0
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/README.md +24 -31
- package/agents/ms-browser-verifier.md +54 -31
- package/commands/ms/add-phase.md +90 -46
- package/commands/ms/config.md +34 -4
- package/commands/ms/help.md +11 -11
- package/commands/ms/insert-phase.md +87 -49
- package/commands/ms/new-milestone.md +1 -1
- package/commands/ms/plan-phase.md +4 -4
- package/mindsystem/references/browser-verification.md +30 -21
- package/mindsystem/references/derive-phase-specification.md +147 -0
- package/mindsystem/templates/config.json +2 -1
- package/mindsystem/templates/roadmap.md +8 -2
- package/mindsystem/workflows/adhoc.md +1 -1
- package/mindsystem/workflows/discuss-phase.md +2 -2
- package/mindsystem/workflows/execute-phase.md +3 -3
- package/mindsystem/workflows/plan-phase.md +45 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+

|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
In lean teams and solo ventures, the person writing the code is also the person deciding what to build, researching the domain, picking the layout, and verifying the result. Mindsystem amplifies each of those steps, making them deeper and faster — discovery, research, design, planning, execution, verification — so one person can cover the full cycle without cutting corners. What it learns carries forward, so phase 10 knows everything phase 1 figured out.
|
|
5
|
+
Amplifies every step of the development workflow you already follow — discovery, research, design, planning, execution, verification. Each one refined, parallelized, and compounded into persistent knowledge. Built for lean teams and solo builders who want to multiply their output without giving up control.
|
|
8
6
|
|
|
9
7
|
```bash
|
|
10
8
|
npx mindsystem-cc
|
|
@@ -13,12 +11,6 @@ npx mindsystem-cc
|
|
|
13
11
|
[](https://www.npmjs.com/package/mindsystem-cc)
|
|
14
12
|
[](LICENSE)
|
|
15
13
|
|
|
16
|
-
<br>
|
|
17
|
-
|
|
18
|
-

|
|
19
|
-
|
|
20
|
-
<br>
|
|
21
|
-
|
|
22
14
|
[Why Mindsystem](#why-mindsystem) · [How it works](#how-it-works) · [Walkthrough](#end-to-end-walkthrough) · [Features](#features) · [Quick start](#quick-start) · [.planning](#the-planning-directory) · [Config](#configuration) · [Commands](#command-reference) · [Troubleshooting](#troubleshooting)
|
|
23
15
|
|
|
24
16
|
</div>
|
|
@@ -27,17 +19,15 @@ npx mindsystem-cc
|
|
|
27
19
|
|
|
28
20
|
## Why Mindsystem
|
|
29
21
|
|
|
30
|
-
|
|
22
|
+
Fully autonomous coding tools take a spec and run until a product emerges. That works for prototypes. Mindsystem takes the opposite approach — it follows the workflow a thorough engineer already uses, and amplifies each step:
|
|
31
23
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
|
35
|
-
|
|
36
|
-
|
|
|
37
|
-
|
|
|
38
|
-
|
|
|
39
|
-
| **Tech lead** | Plan from what you remember about the codebase | **Plan phase** loads knowledge files capturing every decision, pattern, and pitfall from prior phases |
|
|
40
|
-
| **QA engineer** | Figure out what states to test, mock them manually | **Verify work** determines mock states automatically — you validate visually or programmatically |
|
|
24
|
+
| What you'd do manually | What Mindsystem does |
|
|
25
|
+
|---|---|
|
|
26
|
+
| Talk through requirements, catch misalignment early | **Discuss phase** surfaces assumptions with confidence levels, forces tradeoff decisions before any code gets written |
|
|
27
|
+
| Google libraries, read a few docs | **Research phase** runs 3 parallel agents across documentation, your codebase, and community practices — 10x more sources, synthesized in minutes |
|
|
28
|
+
| Try design directions, pick the best one | **Design phase** generates parallel HTML/CSS mockups with side-by-side comparison and exact design tokens |
|
|
29
|
+
| Plan from what you remember about the codebase | **Plan phase** loads knowledge files capturing every decision, pattern, and pitfall from prior phases |
|
|
30
|
+
| Figure out what states to test, mock them manually | **Verify work** determines mock states automatically — you validate visually or programmatically |
|
|
41
31
|
|
|
42
32
|
The workflow stays yours. Each step finishes in minutes instead of hours. Everything learned compounds into knowledge that survives context resets — phase 10 starts with everything the project learned from phases 1–9.
|
|
43
33
|
|
|
@@ -136,7 +126,7 @@ Requirements define what must be TRUE when you ship, not what to build. This goa
|
|
|
136
126
|
### 4. Discuss phase (optional, recommended)
|
|
137
127
|
|
|
138
128
|
```
|
|
139
|
-
/ms:discuss-phase
|
|
129
|
+
/ms:discuss-phase <phase>
|
|
140
130
|
```
|
|
141
131
|
|
|
142
132
|
This is where you catch misalignment before writing any code. Claude loads milestone context, feature knowledge files, and competitor research, then surfaces its assumptions with confidence levels. You validate intent, make tradeoff decisions, correct misunderstandings.
|
|
@@ -148,7 +138,7 @@ Worth taking seriously. Decisions here propagate through everything that follows
|
|
|
148
138
|
### 5. Design phase (optional)
|
|
149
139
|
|
|
150
140
|
```
|
|
151
|
-
/ms:design-phase
|
|
141
|
+
/ms:design-phase <phase>
|
|
152
142
|
```
|
|
153
143
|
|
|
154
144
|
Claude generates parallel HTML/CSS mockup variants and a side-by-side comparison page that opens in your browser. You pick a direction, iterate with feedback.
|
|
@@ -158,7 +148,7 @@ The output is a `DESIGN.md` with exact design tokens (hex colors, px spacing, fo
|
|
|
158
148
|
### 6. Research phase (optional)
|
|
159
149
|
|
|
160
150
|
```
|
|
161
|
-
/ms:research-phase
|
|
151
|
+
/ms:research-phase <phase>
|
|
162
152
|
```
|
|
163
153
|
|
|
164
154
|
Three parallel agents investigate at once: one queries external documentation through Perplexity and Context7, one analyzes your codebase for existing patterns, one surveys community best practices. Claude synthesizes findings into `RESEARCH.md` with confidence levels and source attribution.
|
|
@@ -168,21 +158,19 @@ You resolve library conflicts if any come up. Otherwise, this runs with minimal
|
|
|
168
158
|
### 7. Plan phase
|
|
169
159
|
|
|
170
160
|
```
|
|
171
|
-
/ms:plan-phase
|
|
161
|
+
/ms:plan-phase <phase>
|
|
172
162
|
```
|
|
173
163
|
|
|
174
|
-
Claude breaks the phase into tasks
|
|
175
|
-
|
|
176
|
-
Independent plans get grouped into waves for parallel execution. A risk score (0-100) flags complex plans so you can verify them before committing.
|
|
164
|
+
Claude breaks the phase into tasks and writes a single PLAN.md — pure markdown, no YAML frontmatter, no XML containers. The plan is the executable prompt, roughly 90% actionable content and 10% structure.
|
|
177
165
|
|
|
178
|
-
|
|
166
|
+
A risk score (0-100) flags complex plans so you can verify them before committing. For phases with genuinely independent work streams, enable `multi_plan` in config to restore multi-plan breakdown with wave-based parallel execution.
|
|
179
167
|
|
|
180
168
|
**Creates:** `PLAN.md` files, `EXECUTION-ORDER.md`.
|
|
181
169
|
|
|
182
170
|
### 8. Execute phase
|
|
183
171
|
|
|
184
172
|
```
|
|
185
|
-
/ms:execute-phase
|
|
173
|
+
/ms:execute-phase <phase>
|
|
186
174
|
```
|
|
187
175
|
|
|
188
176
|
Runs without intervention. Each plan runs in a fresh subagent with the full context window available. Goal-backward verification checks that the phase achieved its intended outcome, not just that tasks got marked complete.
|
|
@@ -198,7 +186,7 @@ After execution, knowledge consolidation updates subsystem-scoped knowledge file
|
|
|
198
186
|
### 9. Verify work
|
|
199
187
|
|
|
200
188
|
```
|
|
201
|
-
/ms:verify-work
|
|
189
|
+
/ms:verify-work <phase>
|
|
202
190
|
```
|
|
203
191
|
|
|
204
192
|
You run manual acceptance tests presented in batches of 4. Claude fixes issues inline or via subagent, then asks you to re-test until passing.
|
|
@@ -470,6 +458,11 @@ Mindsystem stores project config in `.planning/config.json`. Run `/ms:config` to
|
|
|
470
458
|
"enabled": true // default: true for web projects
|
|
471
459
|
},
|
|
472
460
|
|
|
461
|
+
// Plan mode for plan-phase.
|
|
462
|
+
// false (default) → single plan per phase, optimal for 1M context
|
|
463
|
+
// true → multi-plan with wave-based parallel execution
|
|
464
|
+
"multi_plan": false,
|
|
465
|
+
|
|
473
466
|
// External task tracker integration (Linear only for now).
|
|
474
467
|
// null → disabled (default)
|
|
475
468
|
"task_tracker": {
|
|
@@ -492,7 +485,7 @@ Full docs live in `/ms:help`.
|
|
|
492
485
|
| `/ms:help` | Show the full command reference |
|
|
493
486
|
| `/ms:progress` | Show where you are and what to run next |
|
|
494
487
|
| `/ms:new-project` | Initialize `.planning/` and capture project intent |
|
|
495
|
-
| `/ms:config` | Configure code reviewers, mockups, gitignore, git remote |
|
|
488
|
+
| `/ms:config` | Configure code reviewers, mockups, plan mode, gitignore, git remote |
|
|
496
489
|
| `/ms:map-codebase` | Document existing repo's stack, structure, and conventions |
|
|
497
490
|
| `/ms:research-milestone` | Milestone-scoped research saved to `.planning/MILESTONE-RESEARCH.md` |
|
|
498
491
|
| `/ms:create-roadmap` | Define requirements and create phases mapped to them |
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: ms-browser-verifier
|
|
3
|
-
description: Visual PR review via browser.
|
|
3
|
+
description: Visual PR review via browser. Completes user journeys end-to-end, fixes trivial issues inline, reports blockers with screenshot evidence.
|
|
4
4
|
model: sonnet
|
|
5
5
|
tools: Read, Write, Edit, Bash, Grep, Glob
|
|
6
6
|
skills:
|
|
@@ -9,9 +9,9 @@ color: green
|
|
|
9
9
|
---
|
|
10
10
|
|
|
11
11
|
<role>
|
|
12
|
-
You are a senior engineer doing a visual PR review. You receive
|
|
12
|
+
You are a senior engineer doing a visual PR review. You receive user journeys from the orchestrator and complete each journey end-to-end — clicking through UI, filling forms, submitting actions, verifying outcomes. Fix clear visual mismatches in project source code. Report blockers with screenshot evidence.
|
|
13
13
|
|
|
14
|
-
**Critical mindset:**
|
|
14
|
+
**Critical mindset:** Use each feature as a real user would, not framework internals. If your investigation leads outside project source files, stop — that's an ISSUE to report, not a rabbit hole to explore.
|
|
15
15
|
</role>
|
|
16
16
|
|
|
17
17
|
<process>
|
|
@@ -53,11 +53,11 @@ Evaluate:
|
|
|
53
53
|
- Stop — no point testing individual items
|
|
54
54
|
|
|
55
55
|
**If app loads with minor warnings:**
|
|
56
|
-
- Note warnings and proceed to
|
|
56
|
+
- Note warnings and proceed to journey testing
|
|
57
57
|
</step>
|
|
58
58
|
|
|
59
|
-
<step name="
|
|
60
|
-
Single loop over all
|
|
59
|
+
<step name="test_journeys">
|
|
60
|
+
Single loop over all user journeys with an integrated decision tree.
|
|
61
61
|
|
|
62
62
|
Create the screenshots directory:
|
|
63
63
|
|
|
@@ -65,39 +65,52 @@ Create the screenshots directory:
|
|
|
65
65
|
mkdir -p {screenshots_dir}
|
|
66
66
|
```
|
|
67
67
|
|
|
68
|
-
For each
|
|
68
|
+
For each journey:
|
|
69
69
|
|
|
70
70
|
```
|
|
71
|
-
agent-browser errors --clear ← isolate errors per
|
|
71
|
+
agent-browser errors --clear ← isolate errors per journey
|
|
72
|
+
|
|
73
|
+
1. Navigate to journey's start page via UI (sidebar, nav — NOT by typing URL)
|
|
74
|
+
→ Cannot reach start page? → UNREACHABLE with screenshot evidence, next journey
|
|
75
|
+
2. Screenshot starting state
|
|
76
|
+
3. Execute each step in order:
|
|
77
|
+
- Perform action (click, fill, select, toggle)
|
|
78
|
+
- Wait for response (networkidle, element change)
|
|
79
|
+
- Screenshot key states (after significant interactions)
|
|
80
|
+
- Check errors after state-modifying actions:
|
|
81
|
+
agent-browser errors
|
|
82
|
+
agent-browser console
|
|
83
|
+
agent-browser network requests
|
|
72
84
|
|
|
73
|
-
|
|
85
|
+
4. After all steps: evaluate success criteria against final state
|
|
74
86
|
|
|
75
|
-
|
|
76
|
-
YES → PASSED, next
|
|
87
|
+
Success criteria met?
|
|
88
|
+
YES → PASSED, next journey
|
|
77
89
|
NO → Read diagnostics:
|
|
78
90
|
agent-browser errors
|
|
79
91
|
agent-browser console
|
|
80
92
|
agent-browser network requests
|
|
81
93
|
|
|
82
94
|
Environment issue? (uncaught exception, failed API request, 4xx/5xx, empty data)
|
|
83
|
-
YES → ENVIRONMENT_BLOCKED for this
|
|
84
|
-
Same error on 2+ consecutive
|
|
85
|
-
Otherwise → next
|
|
95
|
+
YES → ENVIRONMENT_BLOCKED for this journey
|
|
96
|
+
Same error on 2+ consecutive journeys? → stop, return report
|
|
97
|
+
Otherwise → next journey
|
|
86
98
|
NO → Investigate in project source files (diagnostics narrow the search)
|
|
87
|
-
→ Hit a stop signal? (see Investigation boundaries + Fix discipline) → ISSUE with screenshot and diagnostic evidence, next
|
|
88
|
-
→ Root cause found → Fix attempt → re-screenshot
|
|
89
|
-
Fix worked? → FIXED (commit), next
|
|
99
|
+
→ Hit a stop signal? (see Investigation boundaries + Fix discipline) → ISSUE with screenshot and diagnostic evidence, next journey
|
|
100
|
+
→ Root cause found → Fix attempt → resume journey from fixed step → re-screenshot
|
|
101
|
+
Fix worked? → FIXED (commit), next journey
|
|
90
102
|
Fix failed? → Different root-cause theory available?
|
|
91
103
|
YES → Second fix attempt (same flow)
|
|
92
|
-
NO → revert all changes (git checkout -- {files}), ISSUE, next
|
|
104
|
+
NO → revert all changes (git checkout -- {files}), ISSUE, next journey
|
|
93
105
|
```
|
|
94
106
|
|
|
95
|
-
**Per-
|
|
96
|
-
- `{NN}-{
|
|
97
|
-
- `{NN}-{
|
|
98
|
-
- `{NN}-{
|
|
107
|
+
**Per-journey screenshots:**
|
|
108
|
+
- `{NN}-{journey-slug}.webp` — starting state (`.png` if cwebp unavailable)
|
|
109
|
+
- `{NN}-{journey-slug}-{step}.webp` — key interaction states
|
|
110
|
+
- `{NN}-{journey-slug}-result.webp` — final state after journey completion
|
|
111
|
+
- `{NN}-{journey-slug}-fixed.webp` — after fix (if applicable)
|
|
99
112
|
|
|
100
|
-
**
|
|
113
|
+
**Actions are COMPLETED:** Forms are submitted (not just filled). Modals are confirmed (not just opened). Toggles are toggled back. Every journey ends with verifying the outcome.
|
|
101
114
|
</step>
|
|
102
115
|
|
|
103
116
|
<step name="close_and_report">
|
|
@@ -107,15 +120,16 @@ Close the browser. Return a structured report to the orchestrator:
|
|
|
107
120
|
## Browser Verification Report
|
|
108
121
|
|
|
109
122
|
**Status:** {all_passed | has_issues | has_fixes | environment_blocked}
|
|
110
|
-
**Tested:** {count} | **Passed:** {count} | **Fixed:** {count} | **Issues:** {count} | **Blocked:** {count}
|
|
123
|
+
**Tested:** {count} | **Passed:** {count} | **Fixed:** {count} | **Issues:** {count} | **Blocked:** {count} | **Unreachable:** {count}
|
|
111
124
|
|
|
112
125
|
### Screenshots
|
|
113
126
|
|
|
114
|
-
| # |
|
|
115
|
-
|
|
116
|
-
| 1 | {name} | PASSED | {
|
|
117
|
-
| 2 | {name} | FIXED | {
|
|
118
|
-
| 3 | {name} | ISSUE | {
|
|
127
|
+
| # | Journey | Status | Screenshots |
|
|
128
|
+
|---|---------|--------|-------------|
|
|
129
|
+
| 1 | {name} | PASSED | {start}, {result} |
|
|
130
|
+
| 2 | {name} | FIXED | {start}, {result}, {fixed} |
|
|
131
|
+
| 3 | {name} | ISSUE | {start}, {result} |
|
|
132
|
+
| 4 | {name} | UNREACHABLE | {start} |
|
|
119
133
|
|
|
120
134
|
### Fixes Applied
|
|
121
135
|
- {what was wrong} → {what was fixed} | Commit: {hash}
|
|
@@ -123,6 +137,9 @@ Close the browser. Return a structured report to the orchestrator:
|
|
|
123
137
|
### Issues Found
|
|
124
138
|
- {description} | Screenshot: {filename} | Evidence: {what the screenshot shows} | Diagnostics: {console errors, failed network requests, or "none"}
|
|
125
139
|
|
|
140
|
+
### Unreachable Features
|
|
141
|
+
- {journey name} | Screenshot: {filename} | Dead-end: {where navigation broke down — e.g., "no link to /settings found in sidebar or nav"}
|
|
142
|
+
|
|
126
143
|
### Environment Blockers
|
|
127
144
|
- {description} | Screenshot: {filename} | Diagnostics: {error messages, failed requests}
|
|
128
145
|
```
|
|
@@ -132,6 +149,12 @@ Close the browser. Return a structured report to the orchestrator:
|
|
|
132
149
|
|
|
133
150
|
<rules>
|
|
134
151
|
|
|
152
|
+
## Navigation
|
|
153
|
+
- Never navigate by typing a URL into the browser
|
|
154
|
+
- Always reach pages through UI clicks (sidebar, nav links, buttons)
|
|
155
|
+
- Only exception: the app root URL during environment_preflight
|
|
156
|
+
- If a journey's start page cannot be reached via UI navigation, report as UNREACHABLE
|
|
157
|
+
|
|
135
158
|
## Screenshots
|
|
136
159
|
- Save all screenshots to `{screenshots_dir}` — never to temp or working directory
|
|
137
160
|
- Re-snapshot after every DOM change (element refs go stale)
|
|
@@ -145,12 +168,12 @@ Close the browser. Return a structured report to the orchestrator:
|
|
|
145
168
|
- Only read project source files — never node_modules, dist, build output, or generated directories
|
|
146
169
|
- Never read framework/library source to understand why something doesn't work internally
|
|
147
170
|
- Read `agent-browser errors`, `agent-browser console`, and `agent-browser network requests` before investigating source code — if diagnostics show a failed API call or server error, it's ENVIRONMENT_BLOCKED, not a code fix
|
|
148
|
-
- If 2+ consecutive
|
|
171
|
+
- If 2+ consecutive journeys show the same failure pattern, identify the shared root cause rather than investigating each individually
|
|
149
172
|
|
|
150
173
|
## Fix discipline
|
|
151
174
|
- Fix the specific visual mismatch — don't restructure, refactor, or "improve" surrounding code
|
|
152
175
|
- A second fix attempt must be based on a different root-cause theory, not a variation of the first
|
|
153
|
-
- After 3 edit-screenshot cycles on one
|
|
176
|
+
- After 3 edit-screenshot cycles on one journey without resolution, it's an ISSUE regardless
|
|
154
177
|
- Revert all failed fix attempts (`git checkout -- {files}`) before moving on
|
|
155
178
|
- Commit each successful fix atomically with `fix({phase}-browser): {description}` prefix
|
|
156
179
|
|
package/commands/ms/add-phase.md
CHANGED
|
@@ -6,19 +6,21 @@ allowed-tools:
|
|
|
6
6
|
- Read
|
|
7
7
|
- Write
|
|
8
8
|
- Bash
|
|
9
|
+
- AskUserQuestion
|
|
9
10
|
---
|
|
10
11
|
|
|
11
12
|
<objective>
|
|
12
|
-
Add a new integer phase to the end of the current milestone
|
|
13
|
+
Add a new integer phase to the end of the current milestone, fully specified with goal, success criteria, and requirements.
|
|
13
14
|
|
|
14
|
-
|
|
15
|
+
The phase is set up identically to phases created by the roadmapper — same ROADMAP.md entry format, same requirements in REQUIREMENTS.md with traceability mapping. Downstream commands (discuss-phase, plan-phase, execute-phase, verify-work) work without degradation.
|
|
15
16
|
|
|
16
|
-
Purpose: Add
|
|
17
|
+
Purpose: Add discovered work at the end of current milestone with full pipeline support.
|
|
17
18
|
</objective>
|
|
18
19
|
|
|
19
20
|
<execution_context>
|
|
20
21
|
@.planning/ROADMAP.md
|
|
21
22
|
@.planning/STATE.md
|
|
23
|
+
@.planning/REQUIREMENTS.md
|
|
22
24
|
</execution_context>
|
|
23
25
|
|
|
24
26
|
<process>
|
|
@@ -40,8 +42,8 @@ Example: /ms:add-phase Add authentication system
|
|
|
40
42
|
Exit.
|
|
41
43
|
</step>
|
|
42
44
|
|
|
43
|
-
<step name="
|
|
44
|
-
Load
|
|
45
|
+
<step name="load_context">
|
|
46
|
+
Load project context:
|
|
45
47
|
|
|
46
48
|
```bash
|
|
47
49
|
if [ -f .planning/ROADMAP.md ]; then
|
|
@@ -50,9 +52,33 @@ else
|
|
|
50
52
|
echo "ERROR: No roadmap found (.planning/ROADMAP.md)"
|
|
51
53
|
exit 1
|
|
52
54
|
fi
|
|
55
|
+
|
|
56
|
+
if [ ! -f .planning/REQUIREMENTS.md ]; then
|
|
57
|
+
echo "ERROR: No REQUIREMENTS.md found"
|
|
58
|
+
exit 1
|
|
59
|
+
fi
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
If REQUIREMENTS.md is missing, display:
|
|
63
|
+
|
|
64
|
+
```
|
|
65
|
+
Phase addition requires an active milestone with requirements tracking.
|
|
66
|
+
No .planning/REQUIREMENTS.md found.
|
|
67
|
+
|
|
68
|
+
Instead, consider:
|
|
69
|
+
- `/ms:new-milestone` — start a new milestone with requirements
|
|
70
|
+
- `/ms:create-roadmap` — if milestone context exists but roadmap wasn't created yet
|
|
71
|
+
- `/ms:adhoc "<description>"` — for work that doesn't need milestone tracking
|
|
53
72
|
```
|
|
54
73
|
|
|
55
|
-
|
|
74
|
+
Exit command.
|
|
75
|
+
|
|
76
|
+
Read ROADMAP.md and REQUIREMENTS.md.
|
|
77
|
+
|
|
78
|
+
From REQUIREMENTS.md, extract:
|
|
79
|
+
- Existing REQ-ID categories and their prefixes (e.g., AUTH, SUB, CONTENT)
|
|
80
|
+
- Highest REQ-ID number per category (e.g., AUTH-04 → next is AUTH-05)
|
|
81
|
+
- Traceability table structure
|
|
56
82
|
</step>
|
|
57
83
|
|
|
58
84
|
<step name="find_current_milestone">
|
|
@@ -88,6 +114,14 @@ Example: If phases are 4, 5, 5.1, 6 → next is 7
|
|
|
88
114
|
Format as two-digit: `printf "%02d" $next_phase`
|
|
89
115
|
</step>
|
|
90
116
|
|
|
117
|
+
<step name="derive_phase_specification">
|
|
118
|
+
Read `~/.claude/mindsystem/references/derive-phase-specification.md` and follow its algorithm.
|
|
119
|
+
|
|
120
|
+
Variables: `{PHASE_ID}` = `{N}`, `{PHASE_MARKER}` = (empty).
|
|
121
|
+
|
|
122
|
+
Input: user's description + project context (PROJECT.md, ROADMAP.md phases, REQUIREMENTS.md categories).
|
|
123
|
+
</step>
|
|
124
|
+
|
|
91
125
|
<step name="generate_slug">
|
|
92
126
|
Convert the phase description to a kebab-case slug:
|
|
93
127
|
|
|
@@ -114,46 +148,51 @@ mkdir -p "$phase_dir"
|
|
|
114
148
|
Confirm: "Created directory: $phase_dir"
|
|
115
149
|
</step>
|
|
116
150
|
|
|
151
|
+
<step name="update_requirements">
|
|
152
|
+
Follow the requirements update procedure in `~/.claude/mindsystem/references/derive-phase-specification.md`.
|
|
153
|
+
|
|
154
|
+
Use Phase `{N}` for traceability table references and footer dating.
|
|
155
|
+
</step>
|
|
156
|
+
|
|
117
157
|
<step name="update_roadmap">
|
|
118
158
|
Add the new phase entry to the roadmap:
|
|
119
159
|
|
|
120
|
-
1.
|
|
121
|
-
|
|
122
|
-
2. Before writing the phase entry, analyze the description to determine pre-work flags:
|
|
160
|
+
**1. Update phase checklist** (under `## Phases`):
|
|
123
161
|
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
162
|
+
Find the last `- [ ]` or `- [x]` phase line in the current milestone and append:
|
|
163
|
+
```
|
|
164
|
+
- [ ] **Phase {N}: {Name}** - {One-line description}
|
|
165
|
+
```
|
|
127
166
|
|
|
128
|
-
|
|
129
|
-
dashboards, or multi-screen flows. Unlikely for backend-only, API, infrastructure,
|
|
130
|
-
or established UI patterns.
|
|
167
|
+
**2. Add phase details** (under `## Phase Details`):
|
|
131
168
|
|
|
132
|
-
|
|
133
|
-
libraries/frameworks, or unclear technical approach. Unlikely for established
|
|
134
|
-
internal patterns or well-documented conventions.
|
|
169
|
+
Find the insertion point (after last phase in current milestone, before "---" separator or `## Progress`).
|
|
135
170
|
|
|
136
|
-
|
|
171
|
+
Insert full phase entry matching roadmapper format:
|
|
137
172
|
|
|
138
|
-
|
|
173
|
+
```
|
|
174
|
+
### Phase {N}: {Name}
|
|
175
|
+
**Goal**: {approved goal}
|
|
176
|
+
**Depends on**: Phase {N-1}
|
|
177
|
+
**Requirements**: {REQ-IDs comma-separated}
|
|
178
|
+
**Success Criteria** (what must be TRUE):
|
|
179
|
+
1. {criterion}
|
|
180
|
+
2. {criterion}
|
|
181
|
+
3. {criterion}
|
|
182
|
+
**Discuss**: {Likely (reason) | Unlikely (reason)}
|
|
183
|
+
**Discuss topics**: {topics} ← only if Likely
|
|
184
|
+
**Design**: {Likely (reason) | Unlikely (reason)}
|
|
185
|
+
**Design focus**: {focus} ← only if Likely
|
|
186
|
+
**Research**: {Likely (reason) | Unlikely (reason)}
|
|
187
|
+
**Research topics**: {topics} ← only if Likely
|
|
188
|
+
```
|
|
139
189
|
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
**Depends on:** Phase {N-1}
|
|
145
|
-
**Discuss**: {Likely (reason) | Unlikely (reason)}
|
|
146
|
-
**Discuss topics**: {topics} ← only if Likely
|
|
147
|
-
**Design**: {Likely (reason) | Unlikely (reason)}
|
|
148
|
-
**Design focus**: {focus} ← only if Likely
|
|
149
|
-
**Research**: {Likely (reason) | Unlikely (reason)}
|
|
150
|
-
**Research topics**: {topics} ← only if Likely
|
|
151
|
-
|
|
152
|
-
**Details:**
|
|
153
|
-
[To be added during planning]
|
|
154
|
-
```
|
|
190
|
+
**3. Update progress table** — append row:
|
|
191
|
+
```
|
|
192
|
+
| {N}. {Name} | Not started | - |
|
|
193
|
+
```
|
|
155
194
|
|
|
156
|
-
|
|
195
|
+
Write updated roadmap back to file.
|
|
157
196
|
|
|
158
197
|
Preserve all other content exactly (formatting, spacing, other phases).
|
|
159
198
|
</step>
|
|
@@ -176,13 +215,16 @@ Present completion summary:
|
|
|
176
215
|
|
|
177
216
|
```
|
|
178
217
|
Phase {N} added to current milestone:
|
|
179
|
-
-
|
|
218
|
+
- Goal: {goal}
|
|
219
|
+
- Requirements: {REQ-IDs}
|
|
220
|
+
- Success criteria: {count}
|
|
180
221
|
- Directory: .planning/phases/{phase-num}-{slug}/
|
|
181
222
|
- Status: Not planned yet
|
|
182
223
|
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
224
|
+
Files updated:
|
|
225
|
+
- .planning/ROADMAP.md
|
|
226
|
+
- .planning/REQUIREMENTS.md
|
|
227
|
+
- .planning/STATE.md
|
|
186
228
|
```
|
|
187
229
|
|
|
188
230
|
Read `~/.claude/mindsystem/references/routing/next-phase-routing.md` and follow its instructions
|
|
@@ -207,15 +249,17 @@ ms-tools set-last-command "ms:add-phase $ARGUMENTS"
|
|
|
207
249
|
- Don't use decimal numbering (that's /ms:insert-phase)
|
|
208
250
|
- Don't create plans yet (that's /ms:plan-phase)
|
|
209
251
|
- Don't commit changes (user decides when to commit)
|
|
210
|
-
|
|
252
|
+
- Don't write skeletal "[To be planned]" entries — derive a real goal and success criteria
|
|
253
|
+
</anti_patterns>
|
|
211
254
|
|
|
212
255
|
<success_criteria>
|
|
213
256
|
Phase addition is complete when:
|
|
214
257
|
|
|
215
|
-
- [ ]
|
|
216
|
-
- [ ]
|
|
258
|
+
- [ ] Specification derived with outcome-focused goal and 2-5 observable success criteria
|
|
259
|
+
- [ ] Requirements derived with REQ-IDs and REQUIREMENTS.md updated with traceability mapping
|
|
260
|
+
- [ ] Phase directory and roadmap entry created at end of current milestone with correct sequential number
|
|
261
|
+
- [ ] Roadmap entry matches roadmapper format (Goal, Requirements, Success Criteria, pre-work flags)
|
|
217
262
|
- [ ] STATE.md updated with roadmap evolution note
|
|
218
|
-
- [ ]
|
|
219
|
-
- [ ] Next phase number calculated correctly (ignoring decimals)
|
|
263
|
+
- [ ] User approved specification before writing
|
|
220
264
|
- [ ] User informed of next steps
|
|
221
|
-
|
|
265
|
+
</success_criteria>
|
package/commands/ms/config.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: ms:config
|
|
3
|
-
description: Configure Mindsystem preferences — code reviewers, mockups, browser verification, gitignore, git remote, task tracker
|
|
3
|
+
description: Configure Mindsystem preferences — code reviewers, mockups, browser verification, plan mode, gitignore, git remote, task tracker
|
|
4
4
|
allowed-tools:
|
|
5
5
|
- Read
|
|
6
6
|
- Write
|
|
@@ -12,7 +12,7 @@ allowed-tools:
|
|
|
12
12
|
|
|
13
13
|
Configure Mindsystem preferences for the current project.
|
|
14
14
|
|
|
15
|
-
Manages code reviewer agents, mockup preferences, browser verification, .gitignore patterns for `.planning/` artifacts, git remote setup, and task tracker integration. Run anytime to reconfigure — idempotent.
|
|
15
|
+
Manages code reviewer agents, mockup preferences, browser verification, plan mode, .gitignore patterns for `.planning/` artifacts, git remote setup, and task tracker integration. Run anytime to reconfigure — idempotent.
|
|
16
16
|
|
|
17
17
|
</objective>
|
|
18
18
|
|
|
@@ -42,7 +42,7 @@ git remote -v 2>/dev/null || echo "NO_REMOTE"
|
|
|
42
42
|
|
|
43
43
|
<step name="route">
|
|
44
44
|
|
|
45
|
-
**Setup mode:** Proceed through all setting steps sequentially (git_remote → code_reviewers → gitignore_patterns → mockup_preferences → browser_verification → task_tracker). Then go to `validation_summary`.
|
|
45
|
+
**Setup mode:** Proceed through all setting steps sequentially (git_remote → code_reviewers → gitignore_patterns → mockup_preferences → browser_verification → multi_plan → task_tracker). Then go to `validation_summary`.
|
|
46
46
|
|
|
47
47
|
**Edit mode:** Display all current settings with values from config.json, git remote, and .gitignore:
|
|
48
48
|
|
|
@@ -54,7 +54,8 @@ git remote -v 2>/dev/null || echo "NO_REMOTE"
|
|
|
54
54
|
3. **Gitignore** — {current .planning/ patterns or "no .planning/ patterns"}
|
|
55
55
|
4. **Mockups** — open: {auto / ask / off}
|
|
56
56
|
5. **Browser verification** — {enabled / disabled}
|
|
57
|
-
6. **
|
|
57
|
+
6. **Plan mode** — {single plan (default) / multi-plan}
|
|
58
|
+
7. **Task tracker** — {type + cli path, or "none"}
|
|
58
59
|
```
|
|
59
60
|
|
|
60
61
|
Ask: "Which settings would you like to change? Enter the numbers (e.g. 1, 3, 5), 'all' to reconfigure everything, or 'done' if everything looks good."
|
|
@@ -202,6 +203,34 @@ ms-tools config-set browser_verification --json '{"enabled": true}' # or false
|
|
|
202
203
|
|
|
203
204
|
</step>
|
|
204
205
|
|
|
206
|
+
<step name="multi_plan">
|
|
207
|
+
|
|
208
|
+
Read current value:
|
|
209
|
+
|
|
210
|
+
```bash
|
|
211
|
+
CURRENT=$(ms-tools config-get multi_plan --default "false")
|
|
212
|
+
echo "Current multi_plan: $CURRENT"
|
|
213
|
+
```
|
|
214
|
+
|
|
215
|
+
Use AskUserQuestion:
|
|
216
|
+
- header: "Plan mode"
|
|
217
|
+
- question: "How should plan-phase group tasks into plans?"
|
|
218
|
+
- options:
|
|
219
|
+
- "Single plan (Recommended)" — All tasks in one plan. Optimal for 1M context windows where phases already scope work tightly
|
|
220
|
+
- "Multi-plan" — Split into multiple plans with wave-based parallel execution. Use when phases have genuinely independent work streams
|
|
221
|
+
|
|
222
|
+
Map selection:
|
|
223
|
+
- "Single plan" → `false`
|
|
224
|
+
- "Multi-plan" → `true`
|
|
225
|
+
|
|
226
|
+
Update config.json:
|
|
227
|
+
|
|
228
|
+
```bash
|
|
229
|
+
ms-tools config-set multi_plan $VALUE # true or false (unquoted — boolean)
|
|
230
|
+
```
|
|
231
|
+
|
|
232
|
+
</step>
|
|
233
|
+
|
|
205
234
|
<step name="task_tracker">
|
|
206
235
|
|
|
207
236
|
Read current value:
|
|
@@ -254,6 +283,7 @@ Configuration updated:
|
|
|
254
283
|
- Code reviewers: [adhoc / phase / milestone values]
|
|
255
284
|
- Mockup open: [auto / ask / off]
|
|
256
285
|
- Browser verification: [enabled / disabled]
|
|
286
|
+
- Plan mode: [single plan / multi-plan]
|
|
257
287
|
- Gitignore: [patterns added, or "no changes"]
|
|
258
288
|
- Git remote: [remote URL, or "none configured"]
|
|
259
289
|
- Task tracker: [type + cli path, or "none"]
|
package/commands/ms/help.md
CHANGED
|
@@ -108,7 +108,7 @@ Initialize new project with brief and configuration.
|
|
|
108
108
|
Usage: `/ms:new-project`
|
|
109
109
|
|
|
110
110
|
**`/ms:config`**
|
|
111
|
-
Configure Mindsystem preferences — code reviewers, mockup preferences, gitignore patterns, git remote.
|
|
111
|
+
Configure Mindsystem preferences — code reviewers, mockup preferences, browser verification, plan mode, gitignore patterns, git remote.
|
|
112
112
|
|
|
113
113
|
- Use when: you want to set up code review agents, mockup open behavior, manage which .planning/ artifacts are git-ignored, or push your repo to GitHub.
|
|
114
114
|
- Edits `.planning/config.json` and `.gitignore`
|
|
@@ -205,12 +205,12 @@ Create detailed execution plan for a specific phase.
|
|
|
205
205
|
- Generates `.planning/phases/XX-phase-name/XX-YY-PLAN.md`
|
|
206
206
|
- Breaks phase into concrete, actionable tasks
|
|
207
207
|
- Includes verification criteria and success measures
|
|
208
|
-
-
|
|
208
|
+
- Single plan per phase by default. Enable `multi_plan` in config for multiple plans (XX-01, XX-02, etc.)
|
|
209
209
|
- After planning: calculates risk score (0-100) and offers optional plan verification
|
|
210
210
|
- Skip tier (0-39): Low complexity, verification optional
|
|
211
211
|
- Optional tier (40-69): Moderate complexity, verification recommended
|
|
212
212
|
- Verify tier (70-100): Higher complexity, verification strongly recommended
|
|
213
|
-
- Risk factors: task count,
|
|
213
|
+
- Risk factors: task count, external services, CONTEXT.md, cross-cutting concerns, new deps, complex domains
|
|
214
214
|
|
|
215
215
|
Usage: `/ms:plan-phase 1`
|
|
216
216
|
Usage: `/ms:plan-phase` (auto-detect next unplanned phase)
|
|
@@ -254,22 +254,22 @@ Usage: `/ms:audit-milestone`
|
|
|
254
254
|
### Roadmap Management
|
|
255
255
|
|
|
256
256
|
**`/ms:add-phase <description>`**
|
|
257
|
-
Add new phase to end of current milestone.
|
|
257
|
+
Add new phase to end of current milestone with full specification.
|
|
258
258
|
|
|
259
259
|
- Use when: you discovered additional work that belongs after the currently planned phases (not an urgent insertion).
|
|
260
|
-
-
|
|
261
|
-
-
|
|
262
|
-
-
|
|
260
|
+
- Derives goal, success criteria, and requirements (with REQ-IDs) from description
|
|
261
|
+
- Updates ROADMAP.md, REQUIREMENTS.md (with traceability), and STATE.md
|
|
262
|
+
- Phase is set up identically to roadmapper-created phases — full pipeline support
|
|
263
263
|
|
|
264
264
|
Usage: `/ms:add-phase "Add admin dashboard"`
|
|
265
265
|
|
|
266
266
|
**`/ms:insert-phase <after> <description>`**
|
|
267
|
-
Insert urgent work as decimal phase between existing phases.
|
|
267
|
+
Insert urgent work as decimal phase between existing phases with full specification.
|
|
268
268
|
|
|
269
269
|
- Use when: you discovered work that must happen before the next integer phase, but you don’t want to renumber the roadmap.
|
|
270
270
|
- Creates intermediate phase (e.g., 7.1 between 7 and 8)
|
|
271
|
-
-
|
|
272
|
-
-
|
|
271
|
+
- Derives goal, success criteria, and requirements (with REQ-IDs) from description
|
|
272
|
+
- Updates ROADMAP.md, REQUIREMENTS.md (with traceability), and STATE.md
|
|
273
273
|
|
|
274
274
|
Usage: `/ms:insert-phase 7 "Fix critical auth bug"`
|
|
275
275
|
Result: Creates Phase 7.1
|
|
@@ -501,7 +501,7 @@ Optional: `/ms:config` — configure code reviewers, gitignore, and other prefer
|
|
|
501
501
|
**Plan → execute loop (with optional quality gates):**
|
|
502
502
|
|
|
503
503
|
```
|
|
504
|
-
/ms:plan-phase 5 # Create
|
|
504
|
+
/ms:plan-phase 5 # Create PLAN.md file(s)
|
|
505
505
|
/ms:execute-phase 5 # Execute; produces SUMMARY + VERIFICATION
|
|
506
506
|
# If gaps found during verification, follow triage recommendation:
|
|
507
507
|
# Small gaps: /ms:adhoc "Close phase 5 gaps: ..."
|