flow-cc 0.7.1 → 0.8.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.
package/skills/flow-go.md CHANGED
@@ -1,216 +1,168 @@
1
1
  ---
2
2
  name: flow:go
3
- description: Execute the next phase from PRD using wave-based agent teams
3
+ description: Execute the next milestone from PRD using wave-based agent teams
4
4
  user_invocable: true
5
5
  ---
6
6
 
7
- # /flow:go — Execute Next Phase
7
+ # /flow:go — Execute Next Milestone
8
8
 
9
- You are executing the `/flow:go` skill. This reads the PRD, identifies the next unstarted phase, and executes it using wave-based agent teams.
9
+ You are executing the `/flow:go` skill. This reads the PRD, identifies the next unstarted milestone, and executes it using wave-based agent teams.
10
10
 
11
- **Core principle:** The PRD is the execution contract. You execute what it specifies. Do not freelance.
11
+ **Core principle:** The PRD is the execution contract. Execute what it specifies. Do not freelance.
12
12
 
13
- **Plan mode warning:** Do NOT use this skill with plan mode enabled. `/flow:go` is execution — plan mode's read-only constraint prevents it from creating files, running agents, and committing work. The PRD is your plan; run `/flow:go` in normal mode.
14
-
15
- **Skill boundary:** You are inside the `/flow:*` workflow. NEVER invoke, suggest, or reference skills from other workflow systems (`/lisa:*`, `/gsd:*`, `/superpowers:*`, etc.). Only suggest `/flow:*` commands as next steps. Do NOT use the Skill tool to call any non-flow skill. If the user needs a different workflow, they will invoke it themselves.
13
+ **Constraints:** Do NOT use with plan mode (prevents file writes). Only use `/flow:*` commands never invoke `/lisa:*`, `/gsd:*`, `/superpowers:*` or other skills.
16
14
 
17
15
  ## Step 1 — Orient
18
16
 
19
- Read these files (in parallel):
20
- - `.planning/STATE.md` — current position
21
- - `.planning/ROADMAP.md` — phase progress
22
- - `tasks/lessons.md` — active lessons (max 10 one-liners)
23
- - `CLAUDE.md` — execution rules and verification commands
24
- - `.claude/memory/session.md` (if exists) — personal session state
17
+ Read in parallel: `.planning/STATE.md`, `.planning/ROADMAP.md`, `tasks/lessons.md`, `CLAUDE.md`, `.claude/memory/session.md` (if exists).
25
18
 
26
19
  Run `git config user.name` to get developer identity.
27
20
 
28
21
  ### PRD Selection
29
22
 
30
- The user must always select which PRD to execute. No silent auto-resolution.
23
+ The user must always select which PRD to execute.
31
24
 
32
- 1. **If the user passed an argument** (e.g., `/flow:go v3-payments`) — match it against files in `.planning/prds/` by slug or by the `**Milestone:**` header field. If an exact match is found, use it directly. If no match, show available PRDs and ask.
25
+ 1. **If argument provided** (e.g., `/flow:go v3-payments`) — match against `.planning/prds/` by slug or `**Project:**` header. If no match, show available PRDs and ask.
33
26
 
34
- 2. **If no argument** — list all PRD files in `.planning/prds/`. For each PRD, read its `**Status:**` and `**Milestone:**` header fields. Use AskUserQuestion to let the user pick which PRD to execute. Pre-select the first PRD with status "Ready for execution" as the first option. Always show the picker, even if only one PRD exists — the user may want to confirm or run `/flow:spec` instead. Also check for legacy `PRD.md` at root (backward compat) and include it in the list if found.
27
+ 2. **If no argument** — list all PRDs in `.planning/prds/`, read each `**Status:**` and `**Project:**` header. AskUserQuestion to pick. Pre-select first "Ready for execution" PRD. Always show picker. Include legacy root `PRD.md` if found.
35
28
 
36
- 3. **No PRDs found** — "No PRDs found in `.planning/prds/`. Run `/flow:spec` first." Stop here.
29
+ 3. **No PRDs found** — "No PRDs found in `.planning/prds/`. Run `/flow:spec` first." Stop.
37
30
 
38
- **After selection:** Read the chosen PRD. If its `**Milestone:**` doesn't match STATE.md's current milestone, warn: "PRD milestone ([PRD milestone]) doesn't match current milestone ([STATE milestone]). Continuing, but verify you're executing the right spec."
31
+ **After selection:** Read chosen PRD. If its project doesn't match STATE.md current project, warn: "PRD project doesn't match current project. Verify you're executing the right spec."
39
32
 
40
- **Assignment check:** After reading the PRD, check the current phase section for an `**Assigned To:**` field. If present, compare against the developer identity from `git config user.name`. If assigned to a different developer, print: "⚠ This phase is assigned to [other dev]. Proceeding anyway — override if intentional." Do NOT block execution — this is advisory only.
33
+ **Assignment check:** Check milestone's `**Assigned To:**` against `git config user.name`. If different, print advisory warning. Do NOT block execution.
41
34
 
42
- **Identify the next phase:** Find the first phase in ROADMAP.md with status "Pending" or the first unstarted phase in the PRD.
35
+ **Identify next milestone:** First "Pending" milestone in ROADMAP.md or first unstarted in the PRD.
43
36
 
44
37
  ## Step 2 — Pre-flight Checks
45
38
 
46
- Run these checks before executing. If any fail, stop and tell the user what to do:
39
+ If any fail, stop and tell the user:
47
40
 
48
- 1. **PRD selected?** If PRD Selection (above) reached step 3 (no PRDs found): stop with the "No PRDs found" message.
49
- 2. **Phase detailed enough?** The phase section in the PRD must have:
50
- - Wave structure with agent assignments
51
- - Explicit file lists per agent
52
- - Verification commands
53
- - If missing: "PRD phase section is too vague. Add wave structure + file lists, or run `/flow:spec`."
54
- 3. **Branch check:** Verify you're on the correct feature branch (from PRD header). If not, warn the user.
55
- 4. **All phases done?** If no pending phases remain: "All phases complete! Run `/flow:done` to wrap up, or `/flow:milestone` for the next milestone."
41
+ 1. **PRD selected?** If no PRDs found, stop.
42
+ 2. **Milestone detailed enough?** Must have wave structure, file lists, verification commands. If missing: "PRD milestone too vague. Add wave structure + file lists, or run `/flow:spec`."
43
+ 3. **Branch check:** Verify correct feature branch (from PRD header). Warn if wrong.
44
+ 4. **All done?** If no pending milestones: "All milestones complete! Run `/flow:done` to wrap up."
56
45
 
57
- ## Step 3Staleness Check
46
+ ## Step 2.5Linear Status: In Progress
47
+
48
+ - Read PRD header for `**Linear Project:**` field
49
+ - If present and Linear MCP available:
50
+ - Find project (`mcp__linear__get_project`), list milestones, match current milestone name
51
+ - Find issues in that milestone: `mcp__linear__list_issues`
52
+ - Move Backlog/Todo issues to In Progress: `mcp__linear__update_issue`
53
+ - Print: "Linear: [N] issues → In Progress ([milestone name])"
54
+ - If no Linear Project or MCP unavailable: skip silently
58
55
 
59
- Compare this phase's PRD section against the actual codebase:
60
- - Do the files it references still exist / have the expected structure?
61
- - Were files created/deleted/significantly changed by prior phases that affect this phase?
62
- - If stale references found: fix them in the PRD (update file paths, note structural changes) before proceeding. Print what you corrected.
56
+ ## Step 3 Staleness Check
63
57
 
64
- Do NOT rewrite the phase just fix stale references so agents get accurate context.
58
+ Compare milestone's PRD section against actual codebase: do referenced files still exist with expected structure? Were files changed by prior milestones? If stale, fix references in the PRD before proceeding. Print corrections. Do NOT rewrite the milestone.
65
59
 
66
60
  ## Step 4 — Execute Waves
67
61
 
68
- For each wave defined in the PRD phase section:
62
+ For each wave in the PRD milestone:
69
63
 
70
- ### 4a. Prepare Agent Prompts
64
+ ### 4a. Agent Prompts
71
65
 
72
- For each agent in the wave, build a prompt containing:
66
+ Build each agent's prompt:
73
67
 
74
68
  ```
75
- You are [agent-name] working on Phase [N]: [Phase Name].
69
+ You are [agent-name] working on Milestone [N]: [Name].
76
70
 
77
- ## Your Task
78
- [Task description from PRD wave structure]
71
+ ## Task
72
+ [From PRD wave structure]
79
73
 
80
74
  ## Files to Create/Modify
81
- [Exact file list from PRD — absolute paths]
75
+ [Absolute paths from PRD]
82
76
 
83
77
  ## Acceptance Criteria
84
- [Relevant criteria from the user stories this phase covers]
78
+ [From user stories this milestone covers]
85
79
 
86
80
  ## Existing Code to Reuse
87
- [Inline the actual code/types/signatures from the "Key Existing Code" PRD section.
88
- Do NOT just reference file paths — READ the files and INLINE the relevant code
89
- so agents have it in their context without needing to search.]
81
+ [INLINE actual code/types/signatures from "Key Existing Code" do NOT just list paths]
90
82
 
91
83
  ## Rules
92
- - Only modify files in your list. Do not touch anything else.
93
- - Run verification after your work: [commands from CLAUDE.md]
94
- - Stage only your files when committing (never `git add .` or `git add -A`)
95
- - If you need output from another agent that isn't available yet, create a temporary stub and continue. Delete the stub before your final commit.
84
+ - Only modify files in your list
85
+ - Run verification: [commands from CLAUDE.md]
86
+ - Stage only your files (never `git add .`)
96
87
 
97
- ## Lessons (Rules to Follow)
98
- [Relevant lessons from tasks/lessons.md — filter to lessons that apply to this agent's work]
88
+ ## Lessons
89
+ [Relevant items from tasks/lessons.md]
99
90
  ```
100
91
 
101
92
  ### 4b. Spawn Wave
102
93
 
103
- - Use TeamCreate or Task tool to spawn all agents in the wave simultaneously
104
- - Each agent runs with `mode: "bypassPermissions"` for autonomous execution
105
- - Print: **"Wave N: Spawned X agents — [agent-1-task], [agent-2-task], ..."**
106
- - As each agent completes, print: **"Wave N: agent-name completed (X/Y)"**
107
- - Set a reasonable timeout for each agent. If an agent hasn't completed after 10 minutes, check on it. If it's stuck, stop it and note the failure.
108
- - Wait for all agents in the wave to complete (or timeout) before moving to the next wave
94
+ - Spawn all agents simultaneously via TeamCreate/Task with `mode: "bypassPermissions"`
95
+ - Print: **"Wave N: Spawned X agents [tasks]"**
96
+ - As each completes: **"Wave N: agent-name completed (X/Y)"**
97
+ - 10-minute timeout per agent check if stuck, stop and note failure
98
+ - Wait for all agents before next wave
109
99
 
110
100
  ### 4c. Wave Failure Handling
111
101
 
112
- After a wave completes, check results:
113
-
114
- **If ALL agents in a wave failed:**
115
- - Print: **"Wave N failed — all X agents errored."**
116
- - Show error summaries from each agent
117
- - Use AskUserQuestion: "Wave N failed completely. How to proceed?"
118
- - "Retry this wave"
119
- - "Skip to next wave"
120
- - "Abort phase"
102
+ **ALL agents failed:**
103
+ - Print: **"Wave N failed — all X agents errored."** Show error summaries.
104
+ - AskUserQuestion: "Retry this wave" / "Skip to next wave" / "Abort milestone"
121
105
 
122
- **If SOME agents failed but others succeeded:**
123
- - Print: **"Wave N: X/Y agents succeeded, Z failed."**
124
- - Show failed agent error summaries
125
- - Use AskUserQuestion: "Some agents failed. How to proceed?"
126
- - "Retry failed agents"
127
- - "Continue without them"
128
- - "Abort phase"
106
+ **SOME agents failed:**
107
+ - Print: **"Wave N: X/Y succeeded, Z failed."** Show failed agent errors.
108
+ - AskUserQuestion: "Retry failed agents" / "Continue without them" / "Abort milestone"
129
109
 
130
- When a wave completes successfully (all agents or user chose to continue), print: **"Wave N complete. Proceeding to Wave N+1."**
110
+ On success: **"Wave N complete. Proceeding to Wave N+1."**
131
111
 
132
112
  ### 4d. Between Waves
133
113
 
134
- After each wave completes (and failure handling is resolved):
135
- 1. Run verification commands from CLAUDE.md (e.g., `npx tsc --noEmit`, `npx biome check`)
136
- 2. Check for integration issues between agents' output
137
- 3. Fix any issues before proceeding to the next wave
138
- 4. If verification fails and you can fix it quickly (< 2 minutes of work), fix it. Otherwise, stop and report.
114
+ 1. Run verification commands from CLAUDE.md
115
+ 2. Check integration issues between agents' output
116
+ 3. Fix issues before next wave
117
+ 4. If verification fails and fixable in <2 minutes, fix it. Otherwise stop and report.
139
118
 
140
119
  ### 4e. Final Verification
141
120
 
142
- After ALL waves complete:
121
+ After ALL waves:
143
122
  1. Run full verification suite
144
- 2. Check all acceptance criteria for this phase's user stories
145
- 3. If verification fails, attempt to fix (max **3 attempts**):
146
- - After attempt 1 fails: Print **"Verification failed. Attempting fix (1/3)..."**
147
- - After attempt 2 fails: Print **"Verification failed. Attempting fix (2/3)..."**
148
- - After attempt 3 fails: Print **"Verification failed after 3 attempts. STOP."** Print the errors and use AskUserQuestion:
149
- - "Skip verification and continue"
150
- - "Fix manually and retry"
151
- - "Abort this phase"
152
- - Do NOT loop further beyond 3 attempts.
123
+ 2. Check all acceptance criteria for this milestone
124
+ 3. If verification fails, attempt fix (max **3 attempts**):
125
+ - Attempts 1-2: Print "Verification failed. Attempting fix (N/3)..."
126
+ - After attempt 3: Print "Verification failed after 3 attempts. STOP." Show errors. AskUserQuestion: "Skip verification and continue" / "Fix manually and retry" / "Abort this milestone"
127
+ - Do NOT loop beyond 3 attempts.
153
128
 
154
129
  ## Step 5 — Commit
155
130
 
156
- Create an atomic commit for this phase:
157
- - Stage only the files created/modified by this phase's agents
158
- - Commit message: `feat: [phase description] (Phase N)`
159
- - Do NOT push unless the user asks
131
+ Atomic commit for this milestone. Stage only files from this milestone's agents. Message: `feat: [milestone description] (Milestone N)`. Do NOT push unless asked.
160
132
 
161
133
  ## Step 6 — Update Docs
162
134
 
163
- **Session state (ALWAYS):** Write `.claude/memory/session.md` (create `.claude/memory/` directory if needed):
164
- ```
165
- # Session State
166
- **Date:** [today]
167
- **Developer:** [git config user.name]
168
- **Branch:** [current branch]
169
- **Working On:** Phase [N]: [Name] from [PRD name]
170
- **Status:** Phase [N] complete. [brief description of what was built]
171
- **Next:** [Phase N+1 name, or "/flow:done to finalize milestone"]
172
- **Blockers:** [any, or "None"]
173
- ```
174
-
175
- **ROADMAP.md (ALWAYS):** Mark this phase as "Complete ([today's date])"
135
+ **Session state (ALWAYS):** Write `.claude/memory/session.md` (create dir if needed):
136
+ `Date | Developer | Branch | Working On: Milestone N: [Name] from [PRD] | Status: complete — [what was built] | Next: [Milestone N+1 or /flow:done] | Blockers: [any or None]`
176
137
 
177
- **STATE.md (LAST PHASE ONLY):** Update STATE.md only if this was the LAST phase in the PRD (milestone complete). Update "What Was Built" section with:
178
- - Files created/modified (count + key names)
179
- - Commit SHA
180
- - Phase completion note
181
- - Keep "Active PRD" field pointing to the resolved PRD path
138
+ **ROADMAP.md (ALWAYS):** Mark milestone as "Complete ([date])"
182
139
 
183
- For non-final phases, skip STATE.md updates.
140
+ **STATE.md (LAST MILESTONE ONLY):** Update only if this was the LAST milestone (project complete): files created/modified count, commit SHA, milestone completion note. Keep "Active PRD" pointing to resolved path. Skip STATE.md for non-final milestones.
184
141
 
185
142
  ## Step 7 — Route Next Action (MANDATORY — FINAL STEP)
186
143
 
187
- **STOP RULE:** This is the LAST thing you do. After printing the output below, STOP IMMEDIATELY. Do NOT:
188
- - Review or resolve code review comments
189
- - Create or update pull requests
190
- - Run additional cleanup or refactoring
191
- - Do any work beyond printing this summary
192
-
193
- Any post-phase work belongs in a SEPARATE `/flow:go` invocation or `/flow:task`.
144
+ **STOP RULE:** After printing the output below, STOP IMMEDIATELY. Do NOT review comments, create PRs, run cleanup, or do any additional work. Post-milestone work belongs in a separate `/flow:go` or `/flow:task`.
194
145
 
195
- Print this EXACT structure (fill in values):
146
+ Print this EXACT structure:
196
147
 
197
148
  ```
198
- Phase [N]: [Name] — Complete ✓
149
+ Milestone [N]: [Name] — Complete ✓
199
150
  - [X] files created, [Y] modified
200
151
  - Commit: [SHA]
201
152
  - Verification: [passed/failed]
202
153
 
203
154
  Next flow command:
204
- → /flow:go — execute Phase [N+1]: [Next Phase Name]
155
+ → /flow:go — execute Milestone [N+1]: [Next Milestone Name]
205
156
  → /flow:done — end session, update docs, generate handoff prompt
206
157
  ```
207
158
 
208
- If this was the last phase, replace the flow commands block with:
159
+ If this was the LAST milestone (no pending remain), replace "Next flow command" with:
209
160
 
210
161
  ```
211
- All phases complete — milestone done!
212
-
213
- → /flow:done — finalize session (REQUIRED before ending)
162
+ All milestones complete — project done!
163
+ → /flow:done — finalize project, auto-create PR, move issues to In Review (REQUIRED)
214
164
  ```
215
165
 
216
- **CRITICAL:** The `→ /flow:done` line MUST appear in EVERY phase completion output, whether or not more phases remain. This is non-negotiable. `/flow:done` is how session-end documentation happens.
166
+ Do NOT suggest `/flow:go` when no milestones remain.
167
+
168
+ **CRITICAL:** The `/flow:done` line MUST appear in EVERY milestone completion output. Non-negotiable.
@@ -23,9 +23,9 @@ Flow is a structured workflow for Claude Code. Four core commands that turn your
23
23
  (intake) (plan) (build) (wrap)
24
24
  ↑ |
25
25
  | auto-transitions to |
26
- +---- next planned milestone ------+
26
+ +---- next planned project --------+
27
27
 
28
- /flow:spec ← can pre-spec future milestones (each gets its own PRD in .planning/prds/)
28
+ /flow:spec ← can pre-spec future projects (each gets its own PRD in .planning/prds/)
29
29
 
30
30
  /flow:task ← standalone path for bug fixes, cleanup, small features (no PRD needed)
31
31
  ```
@@ -33,59 +33,54 @@ Flow is a structured workflow for Claude Code. Four core commands that turn your
33
33
  ### Command by Command
34
34
 
35
35
  **`/flow:setup`** — Run once per project
36
- - Asks you 4-5 questions (what is it, tech stack, verify commands, roadmap/milestones)
37
- - Captures your full roadmap upfront (paste a list or build one milestone at a time)
38
- - Creates the scaffolding: `CLAUDE.md`, `.planning/STATE.md`, `.planning/ROADMAP.md`, `tasks/lessons.md`
39
- - If project already set up, tells you to use `/flow:triage` or `/flow:spec` instead
36
+ - Asks 4-5 questions (what is it, tech stack, verify commands, roadmap/projects)
37
+ - Captures your full roadmap upfront (paste a list or build one project at a time)
38
+ - Creates scaffolding: `CLAUDE.md`, `.planning/STATE.md`, `.planning/ROADMAP.md`, `tasks/lessons.md`
40
39
 
41
40
  **`/flow:triage`** — Sort a brain dump into action
42
41
  - Takes unstructured text (bullets, stream of consciousness, whatever)
43
- - Categorizes each item: Linear Issue, ROADMAP Entry, Milestone, Lesson, or Discard
44
- - Milestones get added to ROADMAP.md with status "Planned"
42
+ - Categorizes each item: Linear Issue, ROADMAP Entry, Project, Lesson, or Discard
45
43
  - Linear issues created automatically (if Linear MCP available)
46
- - This is the single intake command — use it to add milestones, capture ideas, or file bugs
44
+ - Single intake command — use it to add projects, capture ideas, or file bugs
47
45
 
48
46
  **`/flow:task`** — Run anytime for small work
49
- - Bug fixes, cleanup, one-off features — anything that doesn't need a full PRD
47
+ - Bug fixes, cleanup, one-off features — no PRD needed
50
48
  - Works standalone without `/flow:setup` — lowest friction entry to Flow
51
49
  - Executes, verifies, commits, and logs to STATE.md (if it exists)
52
- - Scope guard recommends `/flow:spec` if the task grows beyond 5 files or 3 layers
53
-
54
- **`/flow:spec`** — Run once per milestone
55
- - Interviews you about scope, user stories, technical design, trade-offs, and phasing
56
- - You can say "done" or "that's enough" anytime to cut the interview short
57
- - Produces `.planning/prds/{milestone}.md` — the execution contract with wave-based phases, file lists, and acceptance criteria
58
- - Can pre-spec future milestones in parallel terminal windows (each milestone gets its own PRD file)
59
- - Updates ROADMAP and STATE to reflect the plan (for the current milestone; future milestone specs skip STATE updates)
60
-
61
- **`/flow:go`** — Run once per phase (this is where the work happens)
62
- - Reads the PRD, finds the next pending phase
63
- - Checks for staleness (did prior phases change things this phase references?)
50
+ - Scope guard recommends `/flow:spec` if task grows beyond 5 files or 3 layers
51
+
52
+ **`/flow:spec`** — Run once per project
53
+ - Interviews you about scope, user stories, technical design, trade-offs, and milestoning
54
+ - Say "done" or "that's enough" anytime to cut the interview short
55
+ - Produces `.planning/prds/{project}.md` — the execution contract with wave-based milestones
56
+ - Can pre-spec future projects in parallel terminal windows
57
+ - Updates ROADMAP and STATE to reflect the plan
58
+
59
+ **`/flow:go`** — Run once per milestone (this is where the work happens)
60
+ - Reads the PRD, finds the next pending milestone
61
+ - Checks for staleness (did prior milestones change things this milestone references?)
64
62
  - Spawns agent teams per the wave structure in the PRD
65
63
  - Verifies after each wave, commits when done
66
- - Updates docs and prints "run `/flow:go` again for the next phase"
67
64
 
68
65
  **`/flow:done`** — Run at end of every session
69
66
  - Replaces STATE.md with current status
70
- - Updates ROADMAP.md with phase completions
71
- - Auto-transitions to the next planned milestone when the current one completes
72
- - Captures lessons as one-liners, enforces 10-item cap (promotes to CLAUDE.md when full)
73
- - Commits doc updates
74
- - Generates a handoff prompt you copy-paste to start the next session
67
+ - Updates ROADMAP.md with milestone completions
68
+ - Auto-transitions to the next planned project when current one completes
69
+ - Captures lessons as one-liners, enforces 10-item cap
70
+ - Generates a handoff prompt for the next session
75
71
 
76
72
  **`/flow:status`** — Run anytime, read-only
77
- - Quick "where am I?" — milestone, phase progress, next step, lesson count
73
+ - Quick "where am I?" — project, milestone progress, next step, lesson count
78
74
 
79
75
  **`/flow:update`** — Run anytime to update Flow
80
76
  - Pulls latest changes from the flow-plugin repo and re-installs all skills
81
- - No need to remember where you cloned the repo — it finds it automatically
82
77
 
83
78
  ### Typical Session
84
79
 
85
80
  ```
86
81
  1. Paste the handoff prompt from last session (or /flow:status to orient)
87
- 2. /flow:go ← executes the next phase
88
- 3. /flow:go ← executes the phase after that (if time permits)
82
+ 2. /flow:go ← executes the next milestone
83
+ 3. /flow:go ← executes the milestone after that (if time permits)
89
84
  4. /flow:done ← wraps up, gives you the handoff prompt for tomorrow
90
85
  ```
91
86
 
@@ -96,11 +91,10 @@ Flow is a structured workflow for Claude Code. Four core commands that turn your
96
91
  ```
97
92
  1. /flow:setup ← scaffolds everything
98
93
  2. /flow:spec ← interview → PRD
99
- 3. /flow:go ← phase 1
94
+ 3. /flow:go ← milestone 1
100
95
  4. /flow:done ← wrap up
101
96
  ```
102
97
 
103
98
  ### Learn More
104
99
 
105
100
  - Full design doc: see `DESIGN.md` in the flow-plugin repo
106
- - Compatible with GSD: `/gsd:debug` and `/gsd:map-codebase` still work alongside Flow