mindforge-cc 2.1.0 โ†’ 2.1.2

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.
Files changed (236) hide show
  1. package/.agent/bin/lib/commands.cjs +959 -0
  2. package/.agent/bin/lib/config.cjs +421 -0
  3. package/.agent/bin/lib/core.cjs +1166 -0
  4. package/.agent/bin/lib/frontmatter.cjs +307 -0
  5. package/.agent/bin/lib/init.cjs +1336 -0
  6. package/.agent/bin/lib/milestone.cjs +252 -0
  7. package/.agent/bin/lib/model-profiles.cjs +68 -0
  8. package/.agent/bin/lib/phase.cjs +888 -0
  9. package/.agent/bin/lib/profile-output.cjs +952 -0
  10. package/.agent/bin/lib/profile-pipeline.cjs +539 -0
  11. package/.agent/bin/lib/roadmap.cjs +329 -0
  12. package/.agent/bin/lib/security.cjs +356 -0
  13. package/.agent/bin/lib/state.cjs +969 -0
  14. package/.agent/bin/lib/template.cjs +222 -0
  15. package/.agent/bin/lib/uat.cjs +189 -0
  16. package/.agent/bin/lib/verify.cjs +851 -0
  17. package/.agent/bin/lib/workstream.cjs +491 -0
  18. package/.agent/bin/mindforge-tools.cjs +897 -0
  19. package/.agent/file-manifest.json +219 -0
  20. package/.agent/hooks/mindforge-check-update.js +114 -0
  21. package/.agent/hooks/mindforge-context-monitor.js +156 -0
  22. package/.agent/hooks/mindforge-prompt-guard.js +96 -0
  23. package/.agent/hooks/mindforge-statusline.js +119 -0
  24. package/.agent/hooks/mindforge-workflow-guard.js +94 -0
  25. package/.agent/mindforge/discuss-phase.md +1 -1
  26. package/.agent/mindforge/help.md +1 -1
  27. package/.agent/mindforge/learn.md +3 -2
  28. package/.agent/mindforge/research.md +3 -2
  29. package/.agent/mindforge/steer.md +1 -1
  30. package/.agent/settings.json +38 -0
  31. package/.agent/skills/mindforge-add-backlog/SKILL.md +72 -0
  32. package/.agent/skills/mindforge-add-phase/SKILL.md +39 -0
  33. package/.agent/skills/mindforge-add-tests/SKILL.md +28 -0
  34. package/.agent/skills/mindforge-add-todo/SKILL.md +42 -0
  35. package/.agent/skills/mindforge-audit-milestone/SKILL.md +29 -0
  36. package/.agent/skills/mindforge-audit-uat/SKILL.md +20 -0
  37. package/.agent/skills/mindforge-autonomous/SKILL.md +33 -0
  38. package/.agent/skills/mindforge-check-todos/SKILL.md +40 -0
  39. package/.agent/skills/mindforge-cleanup/SKILL.md +19 -0
  40. package/.agent/skills/mindforge-complete-milestone/SKILL.md +131 -0
  41. package/.agent/skills/mindforge-debug/SKILL.md +163 -0
  42. package/.agent/skills/mindforge-discuss-phase/SKILL.md +54 -0
  43. package/.agent/skills/mindforge-do/SKILL.md +26 -0
  44. package/.agent/skills/mindforge-execute-phase/SKILL.md +49 -0
  45. package/.agent/skills/mindforge-fast/SKILL.md +23 -0
  46. package/.agent/skills/mindforge-forensics/SKILL.md +49 -0
  47. package/.agent/skills/mindforge-health/SKILL.md +17 -0
  48. package/.agent/skills/mindforge-help/SKILL.md +23 -0
  49. package/.agent/skills/mindforge-insert-phase/SKILL.md +28 -0
  50. package/.agent/skills/mindforge-join-discord/SKILL.md +19 -0
  51. package/.agent/skills/mindforge-list-phase-assumptions/SKILL.md +41 -0
  52. package/.agent/skills/mindforge-list-workspaces/SKILL.md +17 -0
  53. package/.agent/skills/mindforge-manager/SKILL.md +32 -0
  54. package/.agent/skills/mindforge-map-codebase/SKILL.md +64 -0
  55. package/.agent/skills/mindforge-milestone-summary/SKILL.md +44 -0
  56. package/.agent/skills/mindforge-new-milestone/SKILL.md +38 -0
  57. package/.agent/skills/mindforge-new-project/SKILL.md +36 -0
  58. package/.agent/skills/mindforge-new-workspace/SKILL.md +39 -0
  59. package/.agent/skills/mindforge-next/SKILL.md +19 -0
  60. package/.agent/skills/mindforge-note/SKILL.md +29 -0
  61. package/.agent/skills/mindforge-pause-work/SKILL.md +35 -0
  62. package/.agent/skills/mindforge-plan-milestone-gaps/SKILL.md +28 -0
  63. package/.agent/skills/mindforge-plan-phase/SKILL.md +37 -0
  64. package/.agent/skills/mindforge-plant-seed/SKILL.md +22 -0
  65. package/.agent/skills/mindforge-pr-branch/SKILL.md +21 -0
  66. package/.agent/skills/mindforge-profile-user/SKILL.md +38 -0
  67. package/.agent/skills/mindforge-progress/SKILL.md +19 -0
  68. package/.agent/skills/mindforge-quick/SKILL.md +38 -0
  69. package/.agent/skills/mindforge-reapply-patches/SKILL.md +124 -0
  70. package/.agent/skills/mindforge-remove-phase/SKILL.md +26 -0
  71. package/.agent/skills/mindforge-remove-workspace/SKILL.md +22 -0
  72. package/.agent/skills/mindforge-research-phase/SKILL.md +186 -0
  73. package/.agent/skills/mindforge-resume-work/SKILL.md +35 -0
  74. package/.agent/skills/mindforge-review/SKILL.md +31 -0
  75. package/.agent/skills/mindforge-review-backlog/SKILL.md +58 -0
  76. package/.agent/skills/mindforge-session-report/SKILL.md +16 -0
  77. package/.agent/skills/mindforge-set-profile/SKILL.md +9 -0
  78. package/.agent/skills/mindforge-settings/SKILL.md +32 -0
  79. package/.agent/skills/mindforge-ship/SKILL.md +16 -0
  80. package/.agent/skills/mindforge-stats/SKILL.md +16 -0
  81. package/.agent/skills/mindforge-thread/SKILL.md +123 -0
  82. package/.agent/skills/mindforge-ui-phase/SKILL.md +24 -0
  83. package/.agent/skills/mindforge-ui-review/SKILL.md +24 -0
  84. package/.agent/skills/mindforge-update/SKILL.md +35 -0
  85. package/.agent/skills/mindforge-validate-phase/SKILL.md +26 -0
  86. package/.agent/skills/mindforge-verify-work/SKILL.md +30 -0
  87. package/.agent/skills/mindforge-workstreams/SKILL.md +65 -0
  88. package/.agent/workflows/mindforge-add-phase.md +112 -0
  89. package/.agent/workflows/mindforge-add-tests.md +351 -0
  90. package/.agent/workflows/mindforge-add-todo.md +158 -0
  91. package/.agent/workflows/mindforge-audit-milestone.md +332 -0
  92. package/.agent/workflows/mindforge-audit-uat.md +109 -0
  93. package/.agent/workflows/mindforge-autonomous.md +815 -0
  94. package/.agent/workflows/mindforge-check-todos.md +177 -0
  95. package/.agent/workflows/mindforge-cleanup.md +152 -0
  96. package/.agent/workflows/mindforge-complete-milestone.md +766 -0
  97. package/.agent/workflows/mindforge-diagnose-issues.md +220 -0
  98. package/.agent/workflows/mindforge-discovery-phase.md +289 -0
  99. package/.agent/workflows/mindforge-discuss-phase-assumptions.md +645 -0
  100. package/.agent/workflows/mindforge-discuss-phase.md +1047 -0
  101. package/.agent/workflows/mindforge-do.md +104 -0
  102. package/.agent/workflows/mindforge-execute-phase.md +838 -0
  103. package/.agent/workflows/mindforge-execute-plan.md +509 -0
  104. package/.agent/workflows/mindforge-fast.md +105 -0
  105. package/.agent/workflows/mindforge-forensics.md +265 -0
  106. package/.agent/workflows/mindforge-health.md +181 -0
  107. package/.agent/workflows/mindforge-help.md +606 -0
  108. package/.agent/workflows/mindforge-insert-phase.md +130 -0
  109. package/.agent/workflows/mindforge-list-phase-assumptions.md +178 -0
  110. package/.agent/workflows/mindforge-list-workspaces.md +56 -0
  111. package/.agent/workflows/mindforge-manager.md +360 -0
  112. package/.agent/workflows/mindforge-map-codebase.md +370 -0
  113. package/.agent/workflows/mindforge-milestone-summary.md +223 -0
  114. package/.agent/workflows/mindforge-new-milestone.md +469 -0
  115. package/.agent/workflows/mindforge-new-project.md +1226 -0
  116. package/.agent/workflows/mindforge-new-workspace.md +237 -0
  117. package/.agent/workflows/mindforge-next.md +97 -0
  118. package/.agent/workflows/mindforge-node-repair.md +92 -0
  119. package/.agent/workflows/mindforge-note.md +156 -0
  120. package/.agent/workflows/mindforge-pause-work.md +176 -0
  121. package/.agent/workflows/mindforge-plan-milestone-gaps.md +273 -0
  122. package/.agent/workflows/mindforge-plan-phase.md +848 -0
  123. package/.agent/workflows/mindforge-plant-seed.md +169 -0
  124. package/.agent/workflows/mindforge-pr-branch.md +129 -0
  125. package/.agent/workflows/mindforge-profile-user.md +450 -0
  126. package/.agent/workflows/mindforge-progress.md +507 -0
  127. package/.agent/workflows/mindforge-quick.md +732 -0
  128. package/.agent/workflows/mindforge-remove-phase.md +155 -0
  129. package/.agent/workflows/mindforge-remove-workspace.md +90 -0
  130. package/.agent/workflows/mindforge-research-phase.md +74 -0
  131. package/.agent/workflows/mindforge-resume-project.md +325 -0
  132. package/.agent/workflows/mindforge-review.md +228 -0
  133. package/.agent/workflows/mindforge-session-report.md +146 -0
  134. package/.agent/workflows/mindforge-settings.md +283 -0
  135. package/.agent/workflows/mindforge-ship.md +228 -0
  136. package/.agent/workflows/mindforge-stats.md +60 -0
  137. package/.agent/workflows/mindforge-transition.md +671 -0
  138. package/.agent/workflows/mindforge-ui-phase.md +290 -0
  139. package/.agent/workflows/mindforge-ui-review.md +157 -0
  140. package/.agent/workflows/mindforge-update.md +323 -0
  141. package/.agent/workflows/mindforge-validate-phase.md +167 -0
  142. package/.agent/workflows/mindforge-verify-phase.md +254 -0
  143. package/.agent/workflows/mindforge-verify-work.md +623 -0
  144. package/.mindforge/personas/advisor-researcher.md +3 -3
  145. package/.mindforge/personas/debug-specialist.md +1 -1
  146. package/.mindforge/personas/debugger.md +1 -1
  147. package/.mindforge/personas/developer.md +1 -1
  148. package/.mindforge/personas/phase-researcher.md +4 -4
  149. package/.mindforge/personas/project-researcher.md +3 -3
  150. package/.mindforge/personas/research-agent.md +4 -3
  151. package/.mindforge/personas/tech-writer.md +1 -1
  152. package/.mindforge/personas/ui-researcher.md +1 -1
  153. package/.planning/ROADMAP.md +10 -0
  154. package/CHANGELOG.md +34 -0
  155. package/README.md +70 -45
  156. package/RELEASENOTES.md +26 -26
  157. package/bin/install.js +41 -41
  158. package/bin/installer-core.js +67 -26
  159. package/bin/wizard/setup-wizard.js +11 -24
  160. package/bin/wizard/theme.js +141 -0
  161. package/docs/PERSONAS.md +119 -87
  162. package/docs/References/checkpoints.md +778 -0
  163. package/docs/References/config-reference.md +81 -0
  164. package/docs/References/continuation-format.md +249 -0
  165. package/docs/References/decimal-phase-calculation.md +64 -0
  166. package/docs/References/git-integration.md +295 -0
  167. package/docs/References/git-planning-commit.md +38 -0
  168. package/docs/References/model-profile-resolution.md +36 -0
  169. package/docs/References/model-profiles.md +139 -0
  170. package/docs/References/phase-argument-parsing.md +61 -0
  171. package/docs/References/planning-config.md +202 -0
  172. package/docs/References/questioning.md +162 -0
  173. package/docs/References/tdd.md +263 -0
  174. package/docs/References/ui-brand.md +160 -0
  175. package/docs/References/user-profiling.md +681 -0
  176. package/docs/References/verification-patterns.md +612 -0
  177. package/docs/References/workstream-flag.md +58 -0
  178. package/docs/Templates/Agents/CLAUDE-MD.md +122 -0
  179. package/docs/Templates/Agents/COPILOT-INSTRUCTIONS.md +7 -0
  180. package/docs/Templates/Agents/DEBUGGER-PROMPT.md +91 -0
  181. package/docs/Templates/Agents/PLANNER-PROMPT.md +117 -0
  182. package/docs/Templates/Codebase/architecture.md +255 -0
  183. package/docs/Templates/Codebase/concerns.md +310 -0
  184. package/docs/Templates/Codebase/conventions.md +307 -0
  185. package/docs/Templates/Codebase/integrations.md +280 -0
  186. package/docs/Templates/Codebase/stack.md +186 -0
  187. package/docs/Templates/Codebase/structure.md +285 -0
  188. package/docs/Templates/Codebase/testing.md +480 -0
  189. package/docs/Templates/Execution/CONTINUE-HERE.md +78 -0
  190. package/docs/Templates/Execution/DISCUSSION-LOG.md +63 -0
  191. package/docs/Templates/Execution/PHASE-PROMPT.md +610 -0
  192. package/docs/Templates/Execution/STATE.md +176 -0
  193. package/docs/Templates/Execution/SUMMARY-COMPLEX.md +59 -0
  194. package/docs/Templates/Execution/SUMMARY-MINIMAL.md +41 -0
  195. package/docs/Templates/Execution/SUMMARY-STANDARD.md +48 -0
  196. package/docs/Templates/Execution/SUMMARY.md +248 -0
  197. package/docs/Templates/Profile/DEV-PREFERENCES.md +21 -0
  198. package/docs/Templates/Profile/USER-PROFILE.md +146 -0
  199. package/docs/Templates/Profile/USER-SETUP.md +311 -0
  200. package/docs/Templates/Project/DISCOVERY.md +146 -0
  201. package/docs/Templates/Project/MILESTONE-ARCHIVE.md +123 -0
  202. package/docs/Templates/Project/MILESTONE.md +115 -0
  203. package/docs/Templates/Project/PROJECT.md +206 -0
  204. package/docs/Templates/Project/REQUIREMENTS.md +231 -0
  205. package/docs/Templates/Project/RETROSPECTIVE.md +54 -0
  206. package/docs/Templates/Project/ROADMAP.md +202 -0
  207. package/docs/Templates/Quality/DEBUG.md +164 -0
  208. package/docs/Templates/Quality/UAT.md +280 -0
  209. package/docs/Templates/Quality/UI-SPEC.md +100 -0
  210. package/docs/Templates/Quality/VALIDATION.md +76 -0
  211. package/docs/Templates/Quality/VERIFICATION-REPORT.md +322 -0
  212. package/docs/Templates/Research/ARCHITECTURE.md +204 -0
  213. package/docs/Templates/Research/FEATURES.md +147 -0
  214. package/docs/Templates/Research/PITFALLS.md +200 -0
  215. package/docs/Templates/Research/STACK.md +120 -0
  216. package/docs/Templates/Research/SUMMARY.md +170 -0
  217. package/docs/Templates/System/CONFIG.json +43 -0
  218. package/docs/Templates/System/CONTEXT.md +352 -0
  219. package/docs/architecture/README.md +54 -42
  220. package/docs/commands-reference.md +62 -14
  221. package/docs/getting-started.md +26 -18
  222. package/docs/skills-authoring-guide.md +40 -12
  223. package/docs/tutorial.md +83 -116
  224. package/docs/user-guide.md +72 -198
  225. package/package.json +7 -2
  226. package/.mindforge/memory/knowledge-base.jsonl +0 -7
  227. package/.mindforge/memory/pattern-library.jsonl +0 -1
  228. package/.mindforge/memory/team-preferences.jsonl +0 -4
  229. package/.planning/browser-daemon.log +0 -32
  230. package/docs/mindforge-md-reference.md +0 -57
  231. package/docs/reference/config-reference.md +0 -64
  232. /package/{.mindforge/memory/decision-library.jsonl โ†’ .planning/phases/01-migrate-gsd-to-mindforge/.gitkeep} +0 -0
  233. /package/docs/{reference โ†’ References}/audit-events.md +0 -0
  234. /package/docs/{reference โ†’ References}/commands.md +0 -0
  235. /package/docs/{reference โ†’ References}/sdk-api.md +0 -0
  236. /package/docs/{reference โ†’ References}/skills-api.md +0 -0
@@ -0,0 +1,22 @@
1
+ ---
2
+ name: mindforge-remove-workspace
3
+ description: Remove a MindForge workspace and clean up worktrees
4
+ ---
5
+
6
+ <context>
7
+ **Arguments:**
8
+ - `<workspace-name>` (required) โ€” Name of the workspace to remove
9
+ </context>
10
+
11
+ <objective>
12
+ Remove a workspace directory after confirmation. For worktree strategy, runs `git worktree remove` for each member repo first. Refuses if any repo has uncommitted changes.
13
+ </objective>
14
+
15
+ <execution_context>
16
+ @.agent/workflows/mindforge-remove-workspace.md
17
+ @.agent/references/ui-brand.md
18
+ </execution_context>
19
+
20
+ <process>
21
+ Execute the remove-workspace workflow from @.agent/workflows/mindforge-remove-workspace.md end-to-end.
22
+ </process>
@@ -0,0 +1,186 @@
1
+ ---
2
+ name: mindforge-research-phase
3
+ description: Research how to implement a phase (standalone - usually use /mindforge-plan-phase instead)
4
+ ---
5
+
6
+
7
+ <objective>
8
+ Research how to implement a phase. Spawns mindforge-phase-researcher agent with phase context.
9
+
10
+ **Note:** This is a standalone research command. For most workflows, use `/mindforge-plan-phase` which integrates research automatically.
11
+
12
+ **Use this command when:**
13
+ - You want to research without planning yet
14
+ - You want to re-research after planning is complete
15
+ - You need to investigate before deciding if a phase is feasible
16
+
17
+ **Orchestrator role:** Parse phase, validate against roadmap, check existing research, gather context, spawn researcher agent, present results.
18
+
19
+ **Why subagent:** Research burns context fast (WebSearch, Context7 queries, source verification). Fresh 200k context for investigation. Main context stays lean for user interaction.
20
+ </objective>
21
+
22
+ <context>
23
+ Phase number: $ARGUMENTS (required)
24
+
25
+ Normalize phase input in step 1 before any directory lookups.
26
+ </context>
27
+
28
+ <process>
29
+
30
+ ## 0. Initialize Context
31
+
32
+ ```bash
33
+ INIT=$(node ".agent/bin/mindforge-tools.cjs" init phase-op "$ARGUMENTS")
34
+ if [[ "$INIT" == @file:* ]]; then INIT=$(cat "${INIT#@file:}"); fi
35
+ ```
36
+
37
+ Extract from init JSON: `phase_dir`, `phase_number`, `phase_name`, `phase_found`, `commit_docs`, `has_research`, `state_path`, `requirements_path`, `context_path`, `research_path`.
38
+
39
+ Resolve researcher model:
40
+ ```bash
41
+ RESEARCHER_MODEL=$(node ".agent/bin/mindforge-tools.cjs" resolve-model mindforge-phase-researcher --raw)
42
+ ```
43
+
44
+ ## 1. Validate Phase
45
+
46
+ ```bash
47
+ PHASE_INFO=$(node ".agent/bin/mindforge-tools.cjs" roadmap get-phase "${phase_number}")
48
+ ```
49
+
50
+ **If `found` is false:** Error and exit. **If `found` is true:** Extract `phase_number`, `phase_name`, `goal` from JSON.
51
+
52
+ ## 2. Check Existing Research
53
+
54
+ ```bash
55
+ ls .planning/phases/${PHASE}-*/RESEARCH.md 2>/dev/null
56
+ ```
57
+
58
+ **If exists:** Offer: 1) Update research, 2) View existing, 3) Skip. Wait for response.
59
+
60
+ **If doesn't exist:** Continue.
61
+
62
+ ## 3. Gather Phase Context
63
+
64
+ Use paths from INIT (do not inline file contents in orchestrator context):
65
+ - `requirements_path`
66
+ - `context_path`
67
+ - `state_path`
68
+
69
+ Present summary with phase description and what files the researcher will load.
70
+
71
+ ## 4. Spawn mindforge-phase-researcher Agent
72
+
73
+ Research modes: ecosystem (default), feasibility, implementation, comparison.
74
+
75
+ ```markdown
76
+ <research_type>
77
+ Phase Research โ€” investigating HOW to implement a specific phase well.
78
+ </research_type>
79
+
80
+ <key_insight>
81
+ The question is NOT "which library should I use?"
82
+
83
+ The question is: "What do I not know that I don't know?"
84
+
85
+ For this phase, discover:
86
+ - What's the established architecture pattern?
87
+ - What libraries form the standard stack?
88
+ - What problems do people commonly hit?
89
+ - What's SOTA vs what the agent's training thinks is SOTA?
90
+ - What should NOT be hand-rolled?
91
+ </key_insight>
92
+
93
+ <objective>
94
+ Research implementation approach for Phase {phase_number}: {phase_name}
95
+ Mode: ecosystem
96
+ </objective>
97
+
98
+ <files_to_read>
99
+ - {requirements_path} (Requirements)
100
+ - {context_path} (Phase context from discuss-phase, if exists)
101
+ - {state_path} (Prior project decisions and blockers)
102
+ </files_to_read>
103
+
104
+ <additional_context>
105
+ **Phase description:** {phase_description}
106
+ </additional_context>
107
+
108
+ <downstream_consumer>
109
+ Your RESEARCH.md will be loaded by `/mindforge-plan-phase` which uses specific sections:
110
+ - `## Standard Stack` โ†’ Plans use these libraries
111
+ - `## Architecture Patterns` โ†’ Task structure follows these
112
+ - `## Don't Hand-Roll` โ†’ Tasks NEVER build custom solutions for listed problems
113
+ - `## Common Pitfalls` โ†’ Verification steps check for these
114
+ - `## Code Examples` โ†’ Task actions reference these patterns
115
+
116
+ Be prescriptive, not exploratory. "Use X" not "Consider X or Y."
117
+ </downstream_consumer>
118
+
119
+ <quality_gate>
120
+ Before declaring complete, verify:
121
+ - [ ] All domains investigated (not just some)
122
+ - [ ] Negative claims verified with official docs
123
+ - [ ] Multiple sources for critical claims
124
+ - [ ] Confidence levels assigned honestly
125
+ - [ ] Section names match what plan-phase expects
126
+ </quality_gate>
127
+
128
+ <output>
129
+ Write to: .planning/phases/${PHASE}-{slug}/${PHASE}-RESEARCH.md
130
+ </output>
131
+ ```
132
+
133
+ ```
134
+ Task(
135
+ prompt=filled_prompt,
136
+ subagent_type="mindforge-phase-researcher",
137
+ model="{researcher_model}",
138
+ description="Research Phase {phase}"
139
+ )
140
+ ```
141
+
142
+ ## 5. Handle Agent Return
143
+
144
+ **`## RESEARCH COMPLETE`:** Display summary, offer: Plan phase, Dig deeper, Review full, Done.
145
+
146
+ **`## CHECKPOINT REACHED`:** Present to user, get response, spawn continuation.
147
+
148
+ **`## RESEARCH INCONCLUSIVE`:** Show what was attempted, offer: Add context, Try different mode, Manual.
149
+
150
+ ## 6. Spawn Continuation Agent
151
+
152
+ ```markdown
153
+ <objective>
154
+ Continue research for Phase {phase_number}: {phase_name}
155
+ </objective>
156
+
157
+ <prior_state>
158
+ <files_to_read>
159
+ - .planning/phases/${PHASE}-{slug}/${PHASE}-RESEARCH.md (Existing research)
160
+ </files_to_read>
161
+ </prior_state>
162
+
163
+ <checkpoint_response>
164
+ **Type:** {checkpoint_type}
165
+ **Response:** {user_response}
166
+ </checkpoint_response>
167
+ ```
168
+
169
+ ```
170
+ Task(
171
+ prompt=continuation_prompt,
172
+ subagent_type="mindforge-phase-researcher",
173
+ model="{researcher_model}",
174
+ description="Continue research Phase {phase}"
175
+ )
176
+ ```
177
+
178
+ </process>
179
+
180
+ <success_criteria>
181
+ - [ ] Phase validated against roadmap
182
+ - [ ] Existing research checked
183
+ - [ ] mindforge-phase-researcher spawned with context
184
+ - [ ] Checkpoints handled correctly
185
+ - [ ] User knows next steps
186
+ </success_criteria>
@@ -0,0 +1,35 @@
1
+ ---
2
+ name: mindforge-resume-work
3
+ description: Resume work from previous session with full context restoration
4
+ ---
5
+
6
+
7
+ <objective>
8
+ Restore complete project context and resume work seamlessly from previous session.
9
+
10
+ Routes to the resume-project workflow which handles:
11
+
12
+ - STATE.md loading (or reconstruction if missing)
13
+ - Checkpoint detection (.continue-here files)
14
+ - Incomplete work detection (PLAN without SUMMARY)
15
+ - Status presentation
16
+ - Context-aware next action routing
17
+ </objective>
18
+
19
+ <execution_context>
20
+ @.agent/workflows/mindforge-resume-project.md
21
+ </execution_context>
22
+
23
+ <process>
24
+ **Follow the resume-project workflow** from `@.agent/workflows/mindforge-resume-project.md`.
25
+
26
+ The workflow handles all resumption logic including:
27
+
28
+ 1. Project existence verification
29
+ 2. STATE.md loading or reconstruction
30
+ 3. Checkpoint and incomplete work detection
31
+ 4. Visual status presentation
32
+ 5. Context-aware option offering (checks CONTEXT.md before suggesting plan vs discuss)
33
+ 6. Routing to appropriate next command
34
+ 7. Session continuity updates
35
+ </process>
@@ -0,0 +1,31 @@
1
+ ---
2
+ name: mindforge-review
3
+ description: Request cross-AI peer review of phase plans from external AI CLIs
4
+ ---
5
+
6
+
7
+ <objective>
8
+ Invoke external AI CLIs (Gemini, the agent, Codex) to independently review phase plans.
9
+ Produces a structured REVIEWS.md with per-reviewer feedback that can be fed back into
10
+ planning via /mindforge-plan-phase --reviews.
11
+
12
+ **Flow:** Detect CLIs โ†’ Build review prompt โ†’ Invoke each CLI โ†’ Collect responses โ†’ Write REVIEWS.md
13
+ </objective>
14
+
15
+ <execution_context>
16
+ @.agent/workflows/mindforge-review.md
17
+ </execution_context>
18
+
19
+ <context>
20
+ Phase number: extracted from $ARGUMENTS (required)
21
+
22
+ **Flags:**
23
+ - `--gemini` โ€” Include Gemini CLI review
24
+ - `--claude` โ€” Include the agent CLI review (uses separate session)
25
+ - `--codex` โ€” Include Codex CLI review
26
+ - `--all` โ€” Include all available CLIs
27
+ </context>
28
+
29
+ <process>
30
+ Execute the review workflow from @.agent/workflows/mindforge-review.md end-to-end.
31
+ </process>
@@ -0,0 +1,58 @@
1
+ ---
2
+ name: mindforge-review-backlog
3
+ description: Review and promote backlog items to active milestone
4
+ ---
5
+
6
+
7
+ <objective>
8
+ Review all 999.x backlog items and optionally promote them into the active
9
+ milestone sequence or remove stale entries.
10
+ </objective>
11
+
12
+ <process>
13
+
14
+ 1. **List backlog items:**
15
+ ```bash
16
+ ls -d .planning/phases/999* 2>/dev/null || echo "No backlog items found"
17
+ ```
18
+
19
+ 2. **Read ROADMAP.md** and extract all 999.x phase entries:
20
+ ```bash
21
+ cat .planning/ROADMAP.md
22
+ ```
23
+ Show each backlog item with its description, any accumulated context (CONTEXT.md, RESEARCH.md), and creation date.
24
+
25
+ 3. **Present the list to the user** via AskUserQuestion:
26
+ - For each backlog item, show: phase number, description, accumulated artifacts
27
+ - Options per item: **Promote** (move to active), **Keep** (leave in backlog), **Remove** (delete)
28
+
29
+ 4. **For items to PROMOTE:**
30
+ - Find the next sequential phase number in the active milestone
31
+ - Rename the directory from `999.x-slug` to `{new_num}-slug`:
32
+ ```bash
33
+ NEW_NUM=$(node ".agent/bin/mindforge-tools.cjs" phase add "${DESCRIPTION}" --raw)
34
+ ```
35
+ - Move accumulated artifacts to the new phase directory
36
+ - Update ROADMAP.md: move the entry from `## Backlog` section to the active phase list
37
+ - Remove `(BACKLOG)` marker
38
+ - Add appropriate `**Depends on:**` field
39
+
40
+ 5. **For items to REMOVE:**
41
+ - Delete the phase directory
42
+ - Remove the entry from ROADMAP.md `## Backlog` section
43
+
44
+ 6. **Commit changes:**
45
+ ```bash
46
+ node ".agent/bin/mindforge-tools.cjs" commit "docs: review backlog โ€” promoted N, removed M" --files .planning/ROADMAP.md
47
+ ```
48
+
49
+ 7. **Report summary:**
50
+ ```
51
+ ## ๐Ÿ“‹ Backlog Review Complete
52
+
53
+ Promoted: {list of promoted items with new phase numbers}
54
+ Kept: {list of items remaining in backlog}
55
+ Removed: {list of deleted items}
56
+ ```
57
+
58
+ </process>
@@ -0,0 +1,16 @@
1
+ ---
2
+ name: mindforge-session-report
3
+ description: Generate a session report with token usage estimates, work summary, and outcomes
4
+ ---
5
+
6
+ <objective>
7
+ Generate a structured SESSION_REPORT.md document capturing session outcomes, work performed, and estimated resource usage. Provides a shareable artifact for post-session review.
8
+ </objective>
9
+
10
+ <execution_context>
11
+ @.agent/workflows/mindforge-session-report.md
12
+ </execution_context>
13
+
14
+ <process>
15
+ Execute the session-report workflow from @.agent/workflows/mindforge-session-report.md end-to-end.
16
+ </process>
@@ -0,0 +1,9 @@
1
+ ---
2
+ name: mindforge-set-profile
3
+ description: Switch model profile for MindForge agents (quality/balanced/budget/inherit)
4
+ ---
5
+
6
+
7
+ Show the following output to the user verbatim, with no extra commentary:
8
+
9
+ !`node ".agent/bin/mindforge-tools.cjs" config-set-model-profile $ARGUMENTS --raw`
@@ -0,0 +1,32 @@
1
+ ---
2
+ name: mindforge-settings
3
+ description: Configure MindForge workflow toggles and model profile
4
+ ---
5
+
6
+
7
+ <objective>
8
+ Interactive configuration of MindForge workflow agents and model profile via multi-question prompt.
9
+
10
+ Routes to the settings workflow which handles:
11
+ - Config existence ensuring
12
+ - Current settings reading and parsing
13
+ - Interactive 5-question prompt (model, research, plan_check, verifier, branching)
14
+ - Config merging and writing
15
+ - Confirmation display with quick command references
16
+ </objective>
17
+
18
+ <execution_context>
19
+ @.agent/workflows/mindforge-settings.md
20
+ </execution_context>
21
+
22
+ <process>
23
+ **Follow the settings workflow** from `@.agent/workflows/mindforge-settings.md`.
24
+
25
+ The workflow handles all logic including:
26
+ 1. Config file creation with defaults if missing
27
+ 2. Current config reading
28
+ 3. Interactive settings presentation with pre-selection
29
+ 4. Answer parsing and config merging
30
+ 5. File writing
31
+ 6. Confirmation display
32
+ </process>
@@ -0,0 +1,16 @@
1
+ ---
2
+ name: mindforge-ship
3
+ description: Create PR, run review, and prepare for merge after verification passes
4
+ ---
5
+
6
+ <objective>
7
+ Bridge local completion โ†’ merged PR. After /mindforge-verify-work passes, ship the work: push branch, create PR with auto-generated body, optionally trigger review, and track the merge.
8
+
9
+ Closes the plan โ†’ execute โ†’ verify โ†’ ship loop.
10
+ </objective>
11
+
12
+ <execution_context>
13
+ @.agent/workflows/mindforge-ship.md
14
+ </execution_context>
15
+
16
+ Execute the ship workflow from @.agent/workflows/mindforge-ship.md end-to-end.
@@ -0,0 +1,16 @@
1
+ ---
2
+ name: mindforge-stats
3
+ description: Display project statistics โ€” phases, plans, requirements, git metrics, and timeline
4
+ ---
5
+
6
+ <objective>
7
+ Display comprehensive project statistics including phase progress, plan execution metrics, requirements completion, git history stats, and project timeline.
8
+ </objective>
9
+
10
+ <execution_context>
11
+ @.agent/workflows/mindforge-stats.md
12
+ </execution_context>
13
+
14
+ <process>
15
+ Execute the stats workflow from @.agent/workflows/mindforge-stats.md end-to-end.
16
+ </process>
@@ -0,0 +1,123 @@
1
+ ---
2
+ name: mindforge-thread
3
+ description: Manage persistent context threads for cross-session work
4
+ ---
5
+
6
+
7
+ <objective>
8
+ Create, list, or resume persistent context threads. Threads are lightweight
9
+ cross-session knowledge stores for work that spans multiple sessions but
10
+ doesn't belong to any specific phase.
11
+ </objective>
12
+
13
+ <process>
14
+
15
+ **Parse $ARGUMENTS to determine mode:**
16
+
17
+ <mode_list>
18
+ **If no arguments or $ARGUMENTS is empty:**
19
+
20
+ List all threads:
21
+ ```bash
22
+ ls .planning/threads/*.md 2>/dev/null
23
+ ```
24
+
25
+ For each thread, read the first few lines to show title and status:
26
+ ```
27
+ ## Active Threads
28
+
29
+ | Thread | Status | Last Updated |
30
+ |--------|--------|-------------|
31
+ | fix-deploy-key-auth | OPEN | 2026-03-15 |
32
+ | pasta-tcp-timeout | RESOLVED | 2026-03-12 |
33
+ | perf-investigation | IN PROGRESS | 2026-03-17 |
34
+ ```
35
+
36
+ If no threads exist, show:
37
+ ```
38
+ No threads found. Create one with: /mindforge-thread <description>
39
+ ```
40
+ </mode_list>
41
+
42
+ <mode_resume>
43
+ **If $ARGUMENTS matches an existing thread name (file exists):**
44
+
45
+ Resume the thread โ€” load its context into the current session:
46
+ ```bash
47
+ cat ".planning/threads/${THREAD_NAME}.md"
48
+ ```
49
+
50
+ Display the thread content and ask what the user wants to work on next.
51
+ Update the thread's status to `IN PROGRESS` if it was `OPEN`.
52
+ </mode_resume>
53
+
54
+ <mode_create>
55
+ **If $ARGUMENTS is a new description (no matching thread file):**
56
+
57
+ Create a new thread:
58
+
59
+ 1. Generate slug from description:
60
+ ```bash
61
+ SLUG=$(node ".agent/bin/mindforge-tools.cjs" generate-slug "$ARGUMENTS")
62
+ ```
63
+
64
+ 2. Create the threads directory if needed:
65
+ ```bash
66
+ mkdir -p .planning/threads
67
+ ```
68
+
69
+ 3. Write the thread file:
70
+ ```bash
71
+ cat > ".planning/threads/${SLUG}.md" << 'EOF'
72
+ # Thread: {description}
73
+
74
+ ## Status: OPEN
75
+
76
+ ## Goal
77
+
78
+ {description}
79
+
80
+ ## Context
81
+
82
+ *Created from conversation on {today's date}.*
83
+
84
+ ## References
85
+
86
+ - *(add links, file paths, or issue numbers)*
87
+
88
+ ## Next Steps
89
+
90
+ - *(what the next session should do first)*
91
+ EOF
92
+ ```
93
+
94
+ 4. If there's relevant context in the current conversation (code snippets,
95
+ error messages, investigation results), extract and add it to the Context
96
+ section.
97
+
98
+ 5. Commit:
99
+ ```bash
100
+ node ".agent/bin/mindforge-tools.cjs" commit "docs: create thread โ€” ${ARGUMENTS}" --files ".planning/threads/${SLUG}.md"
101
+ ```
102
+
103
+ 6. Report:
104
+ ```
105
+ ## ๐Ÿงต Thread Created
106
+
107
+ Thread: {slug}
108
+ File: .planning/threads/{slug}.md
109
+
110
+ Resume anytime with: /mindforge-thread {slug}
111
+ ```
112
+ </mode_create>
113
+
114
+ </process>
115
+
116
+ <notes>
117
+ - Threads are NOT phase-scoped โ€” they exist independently of the roadmap
118
+ - Lighter weight than /mindforge-pause-work โ€” no phase state, no plan context
119
+ - The value is in Context and Next Steps โ€” a cold-start session can pick up immediately
120
+ - Threads can be promoted to phases or backlog items when they mature:
121
+ /mindforge-add-phase or /mindforge-add-backlog with context from the thread
122
+ - Thread files live in .planning/threads/ โ€” no collision with phases or other MindForge structures
123
+ </notes>
@@ -0,0 +1,24 @@
1
+ ---
2
+ name: mindforge-ui-phase
3
+ description: Generate UI design contract (UI-SPEC.md) for frontend phases
4
+ ---
5
+
6
+ <objective>
7
+ Create a UI design contract (UI-SPEC.md) for a frontend phase.
8
+ Orchestrates mindforge-ui-researcher and mindforge-ui-checker.
9
+ Flow: Validate โ†’ Research UI โ†’ Verify UI-SPEC โ†’ Done
10
+ </objective>
11
+
12
+ <execution_context>
13
+ @.agent/workflows/mindforge-ui-phase.md
14
+ @.agent/references/ui-brand.md
15
+ </execution_context>
16
+
17
+ <context>
18
+ Phase number: $ARGUMENTS โ€” optional, auto-detects next unplanned phase if omitted.
19
+ </context>
20
+
21
+ <process>
22
+ Execute @.agent/workflows/mindforge-ui-phase.md end-to-end.
23
+ Preserve all workflow gates.
24
+ </process>
@@ -0,0 +1,24 @@
1
+ ---
2
+ name: mindforge-ui-review
3
+ description: Retroactive 6-pillar visual audit of implemented frontend code
4
+ ---
5
+
6
+ <objective>
7
+ Conduct a retroactive 6-pillar visual audit. Produces UI-REVIEW.md with
8
+ graded assessment (1-4 per pillar). Works on any project.
9
+ Output: {phase_num}-UI-REVIEW.md
10
+ </objective>
11
+
12
+ <execution_context>
13
+ @.agent/workflows/mindforge-ui-review.md
14
+ @.agent/references/ui-brand.md
15
+ </execution_context>
16
+
17
+ <context>
18
+ Phase: $ARGUMENTS โ€” optional, defaults to last completed phase.
19
+ </context>
20
+
21
+ <process>
22
+ Execute @.agent/workflows/mindforge-ui-review.md end-to-end.
23
+ Preserve all workflow gates.
24
+ </process>
@@ -0,0 +1,35 @@
1
+ ---
2
+ name: mindforge-update
3
+ description: Update MindForge to latest version with changelog display
4
+ ---
5
+
6
+
7
+ <objective>
8
+ Check for MindForge updates, install if available, and display what changed.
9
+
10
+ Routes to the update workflow which handles:
11
+ - Version detection (local vs global installation)
12
+ - npm version checking
13
+ - Changelog fetching and display
14
+ - User confirmation with clean install warning
15
+ - Update execution and cache clearing
16
+ - Restart reminder
17
+ </objective>
18
+
19
+ <execution_context>
20
+ @.agent/workflows/mindforge-update.md
21
+ </execution_context>
22
+
23
+ <process>
24
+ **Follow the update workflow** from `@.agent/workflows/mindforge-update.md`.
25
+
26
+ The workflow handles all logic including:
27
+ 1. Installed version detection (local/global)
28
+ 2. Latest version checking via npm
29
+ 3. Version comparison
30
+ 4. Changelog fetching and extraction
31
+ 5. Clean install warning display
32
+ 6. User confirmation
33
+ 7. Update execution
34
+ 8. Cache clearing
35
+ </process>
@@ -0,0 +1,26 @@
1
+ ---
2
+ name: mindforge-validate-phase
3
+ description: Retroactively audit and fill Nyquist validation gaps for a completed phase
4
+ ---
5
+
6
+ <objective>
7
+ Audit Nyquist validation coverage for a completed phase. Three states:
8
+ - (A) VALIDATION.md exists โ€” audit and fill gaps
9
+ - (B) No VALIDATION.md, SUMMARY.md exists โ€” reconstruct from artifacts
10
+ - (C) Phase not executed โ€” exit with guidance
11
+
12
+ Output: updated VALIDATION.md + generated test files.
13
+ </objective>
14
+
15
+ <execution_context>
16
+ @.agent/workflows/mindforge-validate-phase.md
17
+ </execution_context>
18
+
19
+ <context>
20
+ Phase: $ARGUMENTS โ€” optional, defaults to last completed phase.
21
+ </context>
22
+
23
+ <process>
24
+ Execute @.agent/workflows/mindforge-validate-phase.md.
25
+ Preserve all workflow gates.
26
+ </process>