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.
- package/.agent/bin/lib/commands.cjs +959 -0
- package/.agent/bin/lib/config.cjs +421 -0
- package/.agent/bin/lib/core.cjs +1166 -0
- package/.agent/bin/lib/frontmatter.cjs +307 -0
- package/.agent/bin/lib/init.cjs +1336 -0
- package/.agent/bin/lib/milestone.cjs +252 -0
- package/.agent/bin/lib/model-profiles.cjs +68 -0
- package/.agent/bin/lib/phase.cjs +888 -0
- package/.agent/bin/lib/profile-output.cjs +952 -0
- package/.agent/bin/lib/profile-pipeline.cjs +539 -0
- package/.agent/bin/lib/roadmap.cjs +329 -0
- package/.agent/bin/lib/security.cjs +356 -0
- package/.agent/bin/lib/state.cjs +969 -0
- package/.agent/bin/lib/template.cjs +222 -0
- package/.agent/bin/lib/uat.cjs +189 -0
- package/.agent/bin/lib/verify.cjs +851 -0
- package/.agent/bin/lib/workstream.cjs +491 -0
- package/.agent/bin/mindforge-tools.cjs +897 -0
- package/.agent/file-manifest.json +219 -0
- package/.agent/hooks/mindforge-check-update.js +114 -0
- package/.agent/hooks/mindforge-context-monitor.js +156 -0
- package/.agent/hooks/mindforge-prompt-guard.js +96 -0
- package/.agent/hooks/mindforge-statusline.js +119 -0
- package/.agent/hooks/mindforge-workflow-guard.js +94 -0
- package/.agent/mindforge/discuss-phase.md +1 -1
- package/.agent/mindforge/help.md +1 -1
- package/.agent/mindforge/learn.md +3 -2
- package/.agent/mindforge/research.md +3 -2
- package/.agent/mindforge/steer.md +1 -1
- package/.agent/settings.json +38 -0
- package/.agent/skills/mindforge-add-backlog/SKILL.md +72 -0
- package/.agent/skills/mindforge-add-phase/SKILL.md +39 -0
- package/.agent/skills/mindforge-add-tests/SKILL.md +28 -0
- package/.agent/skills/mindforge-add-todo/SKILL.md +42 -0
- package/.agent/skills/mindforge-audit-milestone/SKILL.md +29 -0
- package/.agent/skills/mindforge-audit-uat/SKILL.md +20 -0
- package/.agent/skills/mindforge-autonomous/SKILL.md +33 -0
- package/.agent/skills/mindforge-check-todos/SKILL.md +40 -0
- package/.agent/skills/mindforge-cleanup/SKILL.md +19 -0
- package/.agent/skills/mindforge-complete-milestone/SKILL.md +131 -0
- package/.agent/skills/mindforge-debug/SKILL.md +163 -0
- package/.agent/skills/mindforge-discuss-phase/SKILL.md +54 -0
- package/.agent/skills/mindforge-do/SKILL.md +26 -0
- package/.agent/skills/mindforge-execute-phase/SKILL.md +49 -0
- package/.agent/skills/mindforge-fast/SKILL.md +23 -0
- package/.agent/skills/mindforge-forensics/SKILL.md +49 -0
- package/.agent/skills/mindforge-health/SKILL.md +17 -0
- package/.agent/skills/mindforge-help/SKILL.md +23 -0
- package/.agent/skills/mindforge-insert-phase/SKILL.md +28 -0
- package/.agent/skills/mindforge-join-discord/SKILL.md +19 -0
- package/.agent/skills/mindforge-list-phase-assumptions/SKILL.md +41 -0
- package/.agent/skills/mindforge-list-workspaces/SKILL.md +17 -0
- package/.agent/skills/mindforge-manager/SKILL.md +32 -0
- package/.agent/skills/mindforge-map-codebase/SKILL.md +64 -0
- package/.agent/skills/mindforge-milestone-summary/SKILL.md +44 -0
- package/.agent/skills/mindforge-new-milestone/SKILL.md +38 -0
- package/.agent/skills/mindforge-new-project/SKILL.md +36 -0
- package/.agent/skills/mindforge-new-workspace/SKILL.md +39 -0
- package/.agent/skills/mindforge-next/SKILL.md +19 -0
- package/.agent/skills/mindforge-note/SKILL.md +29 -0
- package/.agent/skills/mindforge-pause-work/SKILL.md +35 -0
- package/.agent/skills/mindforge-plan-milestone-gaps/SKILL.md +28 -0
- package/.agent/skills/mindforge-plan-phase/SKILL.md +37 -0
- package/.agent/skills/mindforge-plant-seed/SKILL.md +22 -0
- package/.agent/skills/mindforge-pr-branch/SKILL.md +21 -0
- package/.agent/skills/mindforge-profile-user/SKILL.md +38 -0
- package/.agent/skills/mindforge-progress/SKILL.md +19 -0
- package/.agent/skills/mindforge-quick/SKILL.md +38 -0
- package/.agent/skills/mindforge-reapply-patches/SKILL.md +124 -0
- package/.agent/skills/mindforge-remove-phase/SKILL.md +26 -0
- package/.agent/skills/mindforge-remove-workspace/SKILL.md +22 -0
- package/.agent/skills/mindforge-research-phase/SKILL.md +186 -0
- package/.agent/skills/mindforge-resume-work/SKILL.md +35 -0
- package/.agent/skills/mindforge-review/SKILL.md +31 -0
- package/.agent/skills/mindforge-review-backlog/SKILL.md +58 -0
- package/.agent/skills/mindforge-session-report/SKILL.md +16 -0
- package/.agent/skills/mindforge-set-profile/SKILL.md +9 -0
- package/.agent/skills/mindforge-settings/SKILL.md +32 -0
- package/.agent/skills/mindforge-ship/SKILL.md +16 -0
- package/.agent/skills/mindforge-stats/SKILL.md +16 -0
- package/.agent/skills/mindforge-thread/SKILL.md +123 -0
- package/.agent/skills/mindforge-ui-phase/SKILL.md +24 -0
- package/.agent/skills/mindforge-ui-review/SKILL.md +24 -0
- package/.agent/skills/mindforge-update/SKILL.md +35 -0
- package/.agent/skills/mindforge-validate-phase/SKILL.md +26 -0
- package/.agent/skills/mindforge-verify-work/SKILL.md +30 -0
- package/.agent/skills/mindforge-workstreams/SKILL.md +65 -0
- package/.agent/workflows/mindforge-add-phase.md +112 -0
- package/.agent/workflows/mindforge-add-tests.md +351 -0
- package/.agent/workflows/mindforge-add-todo.md +158 -0
- package/.agent/workflows/mindforge-audit-milestone.md +332 -0
- package/.agent/workflows/mindforge-audit-uat.md +109 -0
- package/.agent/workflows/mindforge-autonomous.md +815 -0
- package/.agent/workflows/mindforge-check-todos.md +177 -0
- package/.agent/workflows/mindforge-cleanup.md +152 -0
- package/.agent/workflows/mindforge-complete-milestone.md +766 -0
- package/.agent/workflows/mindforge-diagnose-issues.md +220 -0
- package/.agent/workflows/mindforge-discovery-phase.md +289 -0
- package/.agent/workflows/mindforge-discuss-phase-assumptions.md +645 -0
- package/.agent/workflows/mindforge-discuss-phase.md +1047 -0
- package/.agent/workflows/mindforge-do.md +104 -0
- package/.agent/workflows/mindforge-execute-phase.md +838 -0
- package/.agent/workflows/mindforge-execute-plan.md +509 -0
- package/.agent/workflows/mindforge-fast.md +105 -0
- package/.agent/workflows/mindforge-forensics.md +265 -0
- package/.agent/workflows/mindforge-health.md +181 -0
- package/.agent/workflows/mindforge-help.md +606 -0
- package/.agent/workflows/mindforge-insert-phase.md +130 -0
- package/.agent/workflows/mindforge-list-phase-assumptions.md +178 -0
- package/.agent/workflows/mindforge-list-workspaces.md +56 -0
- package/.agent/workflows/mindforge-manager.md +360 -0
- package/.agent/workflows/mindforge-map-codebase.md +370 -0
- package/.agent/workflows/mindforge-milestone-summary.md +223 -0
- package/.agent/workflows/mindforge-new-milestone.md +469 -0
- package/.agent/workflows/mindforge-new-project.md +1226 -0
- package/.agent/workflows/mindforge-new-workspace.md +237 -0
- package/.agent/workflows/mindforge-next.md +97 -0
- package/.agent/workflows/mindforge-node-repair.md +92 -0
- package/.agent/workflows/mindforge-note.md +156 -0
- package/.agent/workflows/mindforge-pause-work.md +176 -0
- package/.agent/workflows/mindforge-plan-milestone-gaps.md +273 -0
- package/.agent/workflows/mindforge-plan-phase.md +848 -0
- package/.agent/workflows/mindforge-plant-seed.md +169 -0
- package/.agent/workflows/mindforge-pr-branch.md +129 -0
- package/.agent/workflows/mindforge-profile-user.md +450 -0
- package/.agent/workflows/mindforge-progress.md +507 -0
- package/.agent/workflows/mindforge-quick.md +732 -0
- package/.agent/workflows/mindforge-remove-phase.md +155 -0
- package/.agent/workflows/mindforge-remove-workspace.md +90 -0
- package/.agent/workflows/mindforge-research-phase.md +74 -0
- package/.agent/workflows/mindforge-resume-project.md +325 -0
- package/.agent/workflows/mindforge-review.md +228 -0
- package/.agent/workflows/mindforge-session-report.md +146 -0
- package/.agent/workflows/mindforge-settings.md +283 -0
- package/.agent/workflows/mindforge-ship.md +228 -0
- package/.agent/workflows/mindforge-stats.md +60 -0
- package/.agent/workflows/mindforge-transition.md +671 -0
- package/.agent/workflows/mindforge-ui-phase.md +290 -0
- package/.agent/workflows/mindforge-ui-review.md +157 -0
- package/.agent/workflows/mindforge-update.md +323 -0
- package/.agent/workflows/mindforge-validate-phase.md +167 -0
- package/.agent/workflows/mindforge-verify-phase.md +254 -0
- package/.agent/workflows/mindforge-verify-work.md +623 -0
- package/.mindforge/personas/advisor-researcher.md +3 -3
- package/.mindforge/personas/debug-specialist.md +1 -1
- package/.mindforge/personas/debugger.md +1 -1
- package/.mindforge/personas/developer.md +1 -1
- package/.mindforge/personas/phase-researcher.md +4 -4
- package/.mindforge/personas/project-researcher.md +3 -3
- package/.mindforge/personas/research-agent.md +4 -3
- package/.mindforge/personas/tech-writer.md +1 -1
- package/.mindforge/personas/ui-researcher.md +1 -1
- package/.planning/ROADMAP.md +10 -0
- package/CHANGELOG.md +34 -0
- package/README.md +70 -45
- package/RELEASENOTES.md +26 -26
- package/bin/install.js +41 -41
- package/bin/installer-core.js +67 -26
- package/bin/wizard/setup-wizard.js +11 -24
- package/bin/wizard/theme.js +141 -0
- package/docs/PERSONAS.md +119 -87
- package/docs/References/checkpoints.md +778 -0
- package/docs/References/config-reference.md +81 -0
- package/docs/References/continuation-format.md +249 -0
- package/docs/References/decimal-phase-calculation.md +64 -0
- package/docs/References/git-integration.md +295 -0
- package/docs/References/git-planning-commit.md +38 -0
- package/docs/References/model-profile-resolution.md +36 -0
- package/docs/References/model-profiles.md +139 -0
- package/docs/References/phase-argument-parsing.md +61 -0
- package/docs/References/planning-config.md +202 -0
- package/docs/References/questioning.md +162 -0
- package/docs/References/tdd.md +263 -0
- package/docs/References/ui-brand.md +160 -0
- package/docs/References/user-profiling.md +681 -0
- package/docs/References/verification-patterns.md +612 -0
- package/docs/References/workstream-flag.md +58 -0
- package/docs/Templates/Agents/CLAUDE-MD.md +122 -0
- package/docs/Templates/Agents/COPILOT-INSTRUCTIONS.md +7 -0
- package/docs/Templates/Agents/DEBUGGER-PROMPT.md +91 -0
- package/docs/Templates/Agents/PLANNER-PROMPT.md +117 -0
- package/docs/Templates/Codebase/architecture.md +255 -0
- package/docs/Templates/Codebase/concerns.md +310 -0
- package/docs/Templates/Codebase/conventions.md +307 -0
- package/docs/Templates/Codebase/integrations.md +280 -0
- package/docs/Templates/Codebase/stack.md +186 -0
- package/docs/Templates/Codebase/structure.md +285 -0
- package/docs/Templates/Codebase/testing.md +480 -0
- package/docs/Templates/Execution/CONTINUE-HERE.md +78 -0
- package/docs/Templates/Execution/DISCUSSION-LOG.md +63 -0
- package/docs/Templates/Execution/PHASE-PROMPT.md +610 -0
- package/docs/Templates/Execution/STATE.md +176 -0
- package/docs/Templates/Execution/SUMMARY-COMPLEX.md +59 -0
- package/docs/Templates/Execution/SUMMARY-MINIMAL.md +41 -0
- package/docs/Templates/Execution/SUMMARY-STANDARD.md +48 -0
- package/docs/Templates/Execution/SUMMARY.md +248 -0
- package/docs/Templates/Profile/DEV-PREFERENCES.md +21 -0
- package/docs/Templates/Profile/USER-PROFILE.md +146 -0
- package/docs/Templates/Profile/USER-SETUP.md +311 -0
- package/docs/Templates/Project/DISCOVERY.md +146 -0
- package/docs/Templates/Project/MILESTONE-ARCHIVE.md +123 -0
- package/docs/Templates/Project/MILESTONE.md +115 -0
- package/docs/Templates/Project/PROJECT.md +206 -0
- package/docs/Templates/Project/REQUIREMENTS.md +231 -0
- package/docs/Templates/Project/RETROSPECTIVE.md +54 -0
- package/docs/Templates/Project/ROADMAP.md +202 -0
- package/docs/Templates/Quality/DEBUG.md +164 -0
- package/docs/Templates/Quality/UAT.md +280 -0
- package/docs/Templates/Quality/UI-SPEC.md +100 -0
- package/docs/Templates/Quality/VALIDATION.md +76 -0
- package/docs/Templates/Quality/VERIFICATION-REPORT.md +322 -0
- package/docs/Templates/Research/ARCHITECTURE.md +204 -0
- package/docs/Templates/Research/FEATURES.md +147 -0
- package/docs/Templates/Research/PITFALLS.md +200 -0
- package/docs/Templates/Research/STACK.md +120 -0
- package/docs/Templates/Research/SUMMARY.md +170 -0
- package/docs/Templates/System/CONFIG.json +43 -0
- package/docs/Templates/System/CONTEXT.md +352 -0
- package/docs/architecture/README.md +54 -42
- package/docs/commands-reference.md +62 -14
- package/docs/getting-started.md +26 -18
- package/docs/skills-authoring-guide.md +40 -12
- package/docs/tutorial.md +83 -116
- package/docs/user-guide.md +72 -198
- package/package.json +7 -2
- package/.mindforge/memory/knowledge-base.jsonl +0 -7
- package/.mindforge/memory/pattern-library.jsonl +0 -1
- package/.mindforge/memory/team-preferences.jsonl +0 -4
- package/.planning/browser-daemon.log +0 -32
- package/docs/mindforge-md-reference.md +0 -57
- package/docs/reference/config-reference.md +0 -64
- /package/{.mindforge/memory/decision-library.jsonl → .planning/phases/01-migrate-gsd-to-mindforge/.gitkeep} +0 -0
- /package/docs/{reference → References}/audit-events.md +0 -0
- /package/docs/{reference → References}/commands.md +0 -0
- /package/docs/{reference → References}/sdk-api.md +0 -0
- /package/docs/{reference → References}/skills-api.md +0 -0
package/docs/PERSONAS.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# MindForge Persona Reference
|
|
2
2
|
|
|
3
|
-
> A comprehensive guide to the
|
|
3
|
+
> A comprehensive guide to the 32 specialized enterprise personas — roles, tools, and orchestration patterns.
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
@@ -11,24 +11,25 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
11
11
|
### Persona Categories
|
|
12
12
|
|
|
13
13
|
| Category | Count | Personas |
|
|
14
|
-
|
|
|
15
|
-
| **Analyzers & Researchers** |
|
|
16
|
-
| **Architects & Planners** |
|
|
14
|
+
| :--- | :--- | :--- |
|
|
15
|
+
| **Analyzers & Researchers** | 9 | analyst, assumptions-analyzer, advisor-researcher, assumptions-analyzer-extend, project-researcher, research-synthesizer, ui-researcher, research-agent, phase-researcher |
|
|
16
|
+
| **Architects & Planners** | 4 | architect, decision-architect, planner, plan-checker |
|
|
17
17
|
| **Executors** | 2 | developer, executor |
|
|
18
|
-
| **Quality & Security** |
|
|
18
|
+
| **Quality & Security** | 9 | qa-engineer, security-reviewer, coverage-specialist, ui-auditor, ui-checker, nyquist-auditor, integration-checker, verifier, debug-specialist |
|
|
19
19
|
| **Strategy & Ops** | 5 | roadmapper, release-manager, tech-writer, roadmapper-extend, user-profiler |
|
|
20
|
-
| **Debuggers** |
|
|
21
|
-
| **Mapping** |
|
|
20
|
+
| **Debuggers** | 1 | debugger |
|
|
21
|
+
| **Mapping** | 2 | codebase-mapper, codebase-mapper-extend |
|
|
22
22
|
|
|
23
23
|
---
|
|
24
24
|
|
|
25
25
|
## Persona Details
|
|
26
26
|
|
|
27
27
|
### mindforge-analyst (The Requirements Engineer)
|
|
28
|
+
|
|
28
29
|
**Role:** Translates ambiguous business intent into precise, testable, scoped specifications.
|
|
29
30
|
|
|
30
31
|
| Property | Value |
|
|
31
|
-
|
|
|
32
|
+
| :--- | :--- |
|
|
32
33
|
| **Spawned by** | `/mindforge:init-project`, `/mindforge:plan-phase`, `/mindforge:agent analyst` |
|
|
33
34
|
| **Tools** | Read, Write, Bash, Grep |
|
|
34
35
|
| **Color** | `blue` |
|
|
@@ -42,10 +43,11 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
42
43
|
---
|
|
43
44
|
|
|
44
45
|
### mindforge-architect (The System Designer)
|
|
46
|
+
|
|
45
47
|
**Role:** Principal systems architect and technical decision maker. Responsible for system design, data modeling, and architectural integrity.
|
|
46
48
|
|
|
47
49
|
| Property | Value |
|
|
48
|
-
|
|
|
50
|
+
| :--- | :--- |
|
|
49
51
|
| **Spawned by** | `/mindforge:plan-phase`, `/mindforge:agent architect` |
|
|
50
52
|
| **Tools** | Read, Write, Bash, Grep, Glob |
|
|
51
53
|
| **Color** | `purple` |
|
|
@@ -59,12 +61,13 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
59
61
|
---
|
|
60
62
|
|
|
61
63
|
### mindforge-developer (The Engine of Execution)
|
|
64
|
+
|
|
62
65
|
**Role:** Senior software engineer. Writes clean, minimal, well-tested code following strict naming and architectural conventions.
|
|
63
66
|
|
|
64
67
|
| Property | Value |
|
|
65
|
-
|
|
|
68
|
+
| :--- | :--- |
|
|
66
69
|
| **Spawned by** | `/mindforge:execute-phase`, `/mindforge:agent developer` |
|
|
67
|
-
| **Tools** | Read, Write, Bash, Grep, Glob, CommandStatus |
|
|
70
|
+
| **Tools** | Read, Write, Bash, Grep, Glob, CommandStatus, Context7 |
|
|
68
71
|
| **Color** | `green` |
|
|
69
72
|
| **Produces** | Source code, Unit tests, Implementation Summaries |
|
|
70
73
|
|
|
@@ -76,10 +79,11 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
76
79
|
---
|
|
77
80
|
|
|
78
81
|
### mindforge-qa-engineer (The Adversarial Verifier)
|
|
82
|
+
|
|
79
83
|
**Role:** Senior test engineer. Thinks adversarially to find failure modes, boundary conditions, and logic gaps.
|
|
80
84
|
|
|
81
85
|
| Property | Value |
|
|
82
|
-
|
|
|
86
|
+
| :--- | :--- |
|
|
83
87
|
| **Spawned by** | `/mindforge:verify-phase`, `/mindforge:agent qa-engineer` |
|
|
84
88
|
| **Tools** | Read, Write, Bash, Grep, Glob, CommandStatus |
|
|
85
89
|
| **Color** | `yellow` |
|
|
@@ -93,10 +97,11 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
93
97
|
---
|
|
94
98
|
|
|
95
99
|
### mindforge-security-reviewer (The Gatekeeper)
|
|
100
|
+
|
|
96
101
|
**Role:** Senior application security engineer. Reviews code for vulnerabilities, hardcoded secrets, and compliance with the OWASP Top 10.
|
|
97
102
|
|
|
98
103
|
| Property | Value |
|
|
99
|
-
|
|
|
104
|
+
| :--- | :--- |
|
|
100
105
|
| **Spawned by** | `/mindforge:security-scan`, `/mindforge:agent security-reviewer` |
|
|
101
106
|
| **Tools** | Read, Write, Bash, Grep, Glob, CommandStatus |
|
|
102
107
|
| **Color** | `red` |
|
|
@@ -110,12 +115,13 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
110
115
|
---
|
|
111
116
|
|
|
112
117
|
### mindforge-debug-specialist (The Root Cause Expert)
|
|
118
|
+
|
|
113
119
|
**Role:** Principal engineering specialist in production debugging and root cause analysis (RCA). Solves complex defects by finding causes, not patching symptoms.
|
|
114
120
|
|
|
115
121
|
| Property | Value |
|
|
116
|
-
|
|
122
|
+
| :--- | :--- |
|
|
117
123
|
| **Spawned by** | `/mindforge:debug`, `/mindforge:agent debug-specialist` |
|
|
118
|
-
| **Tools** | Read, Write, Bash, Grep, Glob, CommandStatus, ReadTerminal |
|
|
124
|
+
| **Tools** | Read, Write, Bash, Grep, Glob, CommandStatus, ReadTerminal, Context7 |
|
|
119
125
|
| **Color** | `orange` |
|
|
120
126
|
| **Produces** | `DEBUG-REPORT.md` (RCA) |
|
|
121
127
|
|
|
@@ -127,10 +133,11 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
127
133
|
---
|
|
128
134
|
|
|
129
135
|
### mindforge-roadmapper (The Execution Strategist)
|
|
136
|
+
|
|
130
137
|
**Role:** Strategic technical program manager. Defines the optimal sequence of delivery and ensures every task has a clear "Proof of Done".
|
|
131
138
|
|
|
132
139
|
| Property | Value |
|
|
133
|
-
|
|
140
|
+
| :--- | :--- |
|
|
134
141
|
| **Spawned by** | `/mindforge:milestone`, `/mindforge:agent roadmapper` |
|
|
135
142
|
| **Tools** | Read, Write, Bash, Grep, Glob |
|
|
136
143
|
| **Color** | `cyan` |
|
|
@@ -144,10 +151,11 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
144
151
|
---
|
|
145
152
|
|
|
146
153
|
### mindforge-assumptions-analyzer (The Pre-flight Auditor)
|
|
154
|
+
|
|
147
155
|
**Role:** Senior systems auditor. Audits codebase against requirements to find hidden problems and conflicts before work starts.
|
|
148
156
|
|
|
149
157
|
| Property | Value |
|
|
150
|
-
|
|
158
|
+
| :--- | :--- |
|
|
151
159
|
| **Spawned by** | `/mindforge:plan-phase`, `/mindforge:agent assumptions-analyzer` |
|
|
152
160
|
| **Tools** | Read, Write, Bash, Grep, Glob |
|
|
153
161
|
| **Color** | `blue` |
|
|
@@ -161,12 +169,13 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
161
169
|
---
|
|
162
170
|
|
|
163
171
|
### mindforge-research-agent (The Knowledge Detective)
|
|
172
|
+
|
|
164
173
|
**Role:** Technical research specialist. Ingests large documentation sets and codebases to identify patterns and integration paths.
|
|
165
174
|
|
|
166
175
|
| Property | Value |
|
|
167
|
-
|
|
176
|
+
| :--- | :--- |
|
|
168
177
|
| **Spawned by** | `/mindforge:research`, `/mindforge:agent research-agent` |
|
|
169
|
-
| **Tools** | Read, Write, Bash, Grep, Glob, Browser |
|
|
178
|
+
| **Tools** | Read, Write, Bash, Grep, Glob, Browser, Context7 |
|
|
170
179
|
| **Color** | `cyan` |
|
|
171
180
|
| **Produces** | `RESEARCH-NOTES-*.md` |
|
|
172
181
|
|
|
@@ -178,10 +187,11 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
178
187
|
---
|
|
179
188
|
|
|
180
189
|
### mindforge-decision-architect (The Chief of Logic)
|
|
190
|
+
|
|
181
191
|
**Role:** Principal engineering lead. Synthesizes research and audits into actionable architectural verdicts and roadmap adjustments.
|
|
182
192
|
|
|
183
193
|
| Property | Value |
|
|
184
|
-
|
|
194
|
+
| :--- | :--- |
|
|
185
195
|
| **Spawned by** | `/mindforge:plan-phase`, `/mindforge:agent decision-architect` |
|
|
186
196
|
| **Tools** | Read, Write, Bash, Grep, Glob |
|
|
187
197
|
| **Color** | `purple` |
|
|
@@ -195,10 +205,11 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
195
205
|
---
|
|
196
206
|
|
|
197
207
|
### mindforge-release-manager (The Delivery Gatekeeper)
|
|
208
|
+
|
|
198
209
|
**Role:** Senior release manager. Ensures every release is traceable, reversible, and communicated through structured semver and changelogs.
|
|
199
210
|
|
|
200
211
|
| Property | Value |
|
|
201
|
-
|
|
212
|
+
| :--- | :--- |
|
|
202
213
|
| **Spawned by** | `/mindforge:release`, `/mindforge:agent release-manager` |
|
|
203
214
|
| **Tools** | Read, Write, Bash, Grep, Glob, CommandStatus |
|
|
204
215
|
| **Color** | `blue` |
|
|
@@ -212,12 +223,13 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
212
223
|
---
|
|
213
224
|
|
|
214
225
|
### mindforge-tech-writer (The Doc Specialist)
|
|
226
|
+
|
|
215
227
|
**Role:** Senior technical writer. Produces minimal, high-utility documentation for developers and stakeholders.
|
|
216
228
|
|
|
217
229
|
| Property | Value |
|
|
218
|
-
|
|
230
|
+
| :--- | :--- |
|
|
219
231
|
| **Spawned by** | `/mindforge:ship`, `/mindforge:agent tech-writer` |
|
|
220
|
-
| **Tools** | Read, Write, Bash, Grep, Glob |
|
|
232
|
+
| **Tools** | Read, Write, Bash, Grep, Glob, Context7 |
|
|
221
233
|
| **Color** | `cyan` |
|
|
222
234
|
| **Produces** | `README.md`, API Reference, Runbooks |
|
|
223
235
|
|
|
@@ -229,10 +241,11 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
229
241
|
---
|
|
230
242
|
|
|
231
243
|
### mindforge-coverage-specialist (The Logic Auditor)
|
|
244
|
+
|
|
232
245
|
**Role:** Senior test engineer specialized in logic sampling and adversarial gap detection (Nyquist-level coverage).
|
|
233
246
|
|
|
234
247
|
| Property | Value |
|
|
235
|
-
|
|
248
|
+
| :--- | :--- |
|
|
236
249
|
| **Spawned by** | `/mindforge:validate-phase`, `/mindforge:agent coverage-specialist` |
|
|
237
250
|
| **Tools** | Read, Write, Bash, Grep, Glob, CommandStatus |
|
|
238
251
|
| **Color** | `yellow` |
|
|
@@ -246,12 +259,13 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
246
259
|
---
|
|
247
260
|
|
|
248
261
|
### mindforge-advisor-researcher (The Trade-off Specialist)
|
|
262
|
+
|
|
249
263
|
**Role:** Researches single decision points and provides structured comparisons with rationale.
|
|
250
264
|
|
|
251
265
|
| Property | Value |
|
|
252
|
-
|
|
266
|
+
| :--- | :--- |
|
|
253
267
|
| **Spawned by** | `/mindforge:research`, `/mindforge:agent advisor-researcher` |
|
|
254
|
-
| **Tools** | Read, Write, Bash, Grep, Glob, Browser |
|
|
268
|
+
| **Tools** | Read, Write, Bash, Grep, Glob, Browser, Context7 |
|
|
255
269
|
| **Color** | `cyan` |
|
|
256
270
|
| **Produces** | Comparison tables, Rationale documents |
|
|
257
271
|
|
|
@@ -263,12 +277,13 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
263
277
|
---
|
|
264
278
|
|
|
265
279
|
### mindforge-project-researcher (The Ecosystem Explorer)
|
|
280
|
+
|
|
266
281
|
**Role:** Researches the technical ecosystem for new projects or milestones.
|
|
267
282
|
|
|
268
283
|
| Property | Value |
|
|
269
|
-
|
|
284
|
+
| :--- | :--- |
|
|
270
285
|
| **Spawned by** | `/mindforge:init-project`, `/mindforge:agent project-researcher` |
|
|
271
|
-
| **Tools** | Read, Write, Bash, Grep, Glob, Browser |
|
|
286
|
+
| **Tools** | Read, Write, Bash, Grep, Glob, Browser, Context7 |
|
|
272
287
|
| **Color** | `purple` |
|
|
273
288
|
| **Produces** | `SUMMARY.md`, `STACK.md`, `ARCHITECTURE.md` |
|
|
274
289
|
|
|
@@ -280,10 +295,11 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
280
295
|
---
|
|
281
296
|
|
|
282
297
|
### mindforge-research-synthesizer (The Strategy Fuser)
|
|
298
|
+
|
|
283
299
|
**Role:** Synthesizes research outputs from multiple parallel agents into a cohesive strategy.
|
|
284
300
|
|
|
285
301
|
| Property | Value |
|
|
286
|
-
|
|
302
|
+
| :--- | :--- |
|
|
287
303
|
| **Spawned by** | `/mindforge:research`, `/mindforge:agent research-synthesizer` |
|
|
288
304
|
| **Tools** | Read, Write, Bash, Grep, Glob |
|
|
289
305
|
| **Color** | `purple` |
|
|
@@ -297,12 +313,13 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
297
313
|
---
|
|
298
314
|
|
|
299
315
|
### mindforge-ui-researcher (The Visual Architect)
|
|
316
|
+
|
|
300
317
|
**Role:** Produces design contracts (UI-SPEC.md) for frontend phases.
|
|
301
318
|
|
|
302
319
|
| Property | Value |
|
|
303
|
-
|
|
320
|
+
| :--- | :--- |
|
|
304
321
|
| **Spawned by** | `/mindforge:plan-phase`, `/mindforge:agent ui-researcher` |
|
|
305
|
-
| **Tools** | Read, Write, Bash, Grep, Glob, Browser |
|
|
322
|
+
| **Tools** | Read, Write, Bash, Grep, Glob, Browser, Context7 |
|
|
306
323
|
| **Color** | `#E879F9` |
|
|
307
324
|
| **Produces** | `UI-SPEC.md` |
|
|
308
325
|
|
|
@@ -314,12 +331,13 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
314
331
|
---
|
|
315
332
|
|
|
316
333
|
### mindforge-phase-researcher (The Domain Deep-Diver)
|
|
334
|
+
|
|
317
335
|
**Role:** Investigates the specific technical domain or codebase area for an active phase.
|
|
318
336
|
|
|
319
337
|
| Property | Value |
|
|
320
|
-
|
|
338
|
+
| :--- | :--- |
|
|
321
339
|
| **Spawned by** | `/mindforge:plan-phase`, `/mindforge:agent phase-researcher` |
|
|
322
|
-
| **Tools** | Read, Write, Bash, Grep, Glob |
|
|
340
|
+
| **Tools** | Read, Write, Bash, Grep, Glob, Context7 |
|
|
323
341
|
| **Color** | `blue` |
|
|
324
342
|
| **Produces** | `RESEARCH.md` |
|
|
325
343
|
|
|
@@ -331,14 +349,15 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
331
349
|
---
|
|
332
350
|
|
|
333
351
|
### mindforge-planner (The Task Architect)
|
|
352
|
+
|
|
334
353
|
**Role:** Decomposes phase goals into precise, atomic, executable implementation plans.
|
|
335
354
|
|
|
336
355
|
| Property | Value |
|
|
337
|
-
|
|
356
|
+
| :--- | :--- |
|
|
338
357
|
| **Spawned by** | `/mindforge:plan-phase`, `/mindforge:agent planner` |
|
|
339
358
|
| **Tools** | Read, Write, Bash, Grep, Glob |
|
|
340
359
|
| **Color** | `blue` |
|
|
341
|
-
| **Produces** | `PLAN-*.md` (XML task breakdown)
|
|
360
|
+
| **Produces** | `PLAN-*.md` (XML task breakdown)|
|
|
342
361
|
|
|
343
362
|
**Capabilities:**
|
|
344
363
|
- Goal-backward task decomposition.
|
|
@@ -348,10 +367,11 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
348
367
|
---
|
|
349
368
|
|
|
350
369
|
### mindforge-integration-checker (The Connection Auditor)
|
|
370
|
+
|
|
351
371
|
**Role:** Verifies cross-component wiring, API consumers, and end-to-end user flows.
|
|
352
372
|
|
|
353
373
|
| Property | Value |
|
|
354
|
-
|
|
374
|
+
| :--- | :--- |
|
|
355
375
|
| **Spawned by** | `/mindforge:verify-phase`, `/mindforge:agent integration-checker` |
|
|
356
376
|
| **Tools** | Read, Write, Bash, Grep, Glob |
|
|
357
377
|
| **Color** | `blue` |
|
|
@@ -365,10 +385,11 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
365
385
|
---
|
|
366
386
|
|
|
367
387
|
### mindforge-nyquist-auditor (The Fidelity Inspector)
|
|
388
|
+
|
|
368
389
|
**Role:** Specialized verification auditor focused on filling testing gaps.
|
|
369
390
|
|
|
370
391
|
| Property | Value |
|
|
371
|
-
|
|
392
|
+
| :--- | :--- |
|
|
372
393
|
| **Spawned by** | `/mindforge:validate-phase`, `/mindforge:agent nyquist-auditor` |
|
|
373
394
|
| **Tools** | Read, Write, Bash, Grep, Glob, CmdStatus, ReadTerminal |
|
|
374
395
|
| **Color** | `#8B5CF6` |
|
|
@@ -382,10 +403,11 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
382
403
|
---
|
|
383
404
|
|
|
384
405
|
### mindforge-plan-checker (The Logic Guard)
|
|
406
|
+
|
|
385
407
|
**Role:** Verifies implementation plans against project goals and constraints.
|
|
386
408
|
|
|
387
409
|
| Property | Value |
|
|
388
|
-
|
|
410
|
+
| :--- | :--- |
|
|
389
411
|
| **Spawned by** | `/mindforge:plan-phase`, `/mindforge:agent plan-checker` |
|
|
390
412
|
| **Tools** | Read, Write, Bash, Grep, Glob |
|
|
391
413
|
| **Color** | `yellow` |
|
|
@@ -399,10 +421,11 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
399
421
|
---
|
|
400
422
|
|
|
401
423
|
### mindforge-ui-auditor (The Polish Inspector)
|
|
424
|
+
|
|
402
425
|
**Role:** Performs retroactive visual and interaction audits of UI code.
|
|
403
426
|
|
|
404
427
|
| Property | Value |
|
|
405
|
-
|
|
428
|
+
| :--- | :--- |
|
|
406
429
|
| **Spawned by** | `/mindforge:verify-phase`, `/mindforge:agent ui-auditor` |
|
|
407
430
|
| **Tools** | Read, Write, Bash, Grep, Glob |
|
|
408
431
|
| **Color** | `#F472B6` |
|
|
@@ -416,10 +439,11 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
416
439
|
---
|
|
417
440
|
|
|
418
441
|
### mindforge-ui-checker (The Design Gatekeeper)
|
|
442
|
+
|
|
419
443
|
**Role:** Validates UI-SPEC.md design contracts before planning starts.
|
|
420
444
|
|
|
421
445
|
| Property | Value |
|
|
422
|
-
|
|
446
|
+
| :--- | :--- |
|
|
423
447
|
| **Spawned by** | `/mindforge:plan-phase`, `/mindforge:agent ui-checker` |
|
|
424
448
|
| **Tools** | Read, Write, Bash, Grep, Glob |
|
|
425
449
|
| **Color** | `#22D3EE` |
|
|
@@ -433,10 +457,11 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
433
457
|
---
|
|
434
458
|
|
|
435
459
|
### mindforge-verifier (The Goal Sentinel)
|
|
460
|
+
|
|
436
461
|
**Role:** Principal specialist in goal-backward verification.
|
|
437
462
|
|
|
438
463
|
| Property | Value |
|
|
439
|
-
|
|
464
|
+
| :--- | :--- |
|
|
440
465
|
| **Spawned by** | `/mindforge:verify-phase`, `/mindforge:agent verifier` |
|
|
441
466
|
| **Tools** | Read, Write, Bash, Grep, Glob |
|
|
442
467
|
| **Color** | `green` |
|
|
@@ -450,10 +475,11 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
450
475
|
---
|
|
451
476
|
|
|
452
477
|
### mindforge-executor (The Implementation Pilot)
|
|
478
|
+
|
|
453
479
|
**Role:** Executes implementation plans with atomic commit discipline.
|
|
454
480
|
|
|
455
481
|
| Property | Value |
|
|
456
|
-
|
|
482
|
+
| :--- | :--- |
|
|
457
483
|
| **Spawned by** | `/mindforge:execute-phase`, `/mindforge:agent executor` |
|
|
458
484
|
| **Tools** | Read, Write, Bash, Grep, Glob, CmdStatus, ReadTerminal |
|
|
459
485
|
| **Color** | `yellow` |
|
|
@@ -467,12 +493,13 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
467
493
|
---
|
|
468
494
|
|
|
469
495
|
### mindforge-debugger (The RCA Scientist)
|
|
496
|
+
|
|
470
497
|
**Role:** Specialist in systematic root cause analysis and complex defect resolution.
|
|
471
498
|
|
|
472
499
|
| Property | Value |
|
|
473
|
-
|
|
500
|
+
| :--- | :--- |
|
|
474
501
|
| **Spawned by** | `/mindforge:debug`, `/mindforge:agent debugger` |
|
|
475
|
-
| **Tools** | Read, Write, Bash, Grep, Glob, CmdStatus, ReadTerminal, Browser |
|
|
502
|
+
| **Tools** | Read, Write, Bash, Grep, Glob, CmdStatus, ReadTerminal, Browser, Context7 |
|
|
476
503
|
| **Color** | `orange` |
|
|
477
504
|
| **Produces** | `DEBUG-REPORT.md` (RCA) |
|
|
478
505
|
|
|
@@ -483,11 +510,12 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
483
510
|
|
|
484
511
|
---
|
|
485
512
|
|
|
486
|
-
### mindforge-assumptions-analyzer (
|
|
513
|
+
### mindforge-assumptions-analyzer-extend (The Reality Checker)
|
|
514
|
+
|
|
487
515
|
**Role:** Reality checker for identifying hidden codebase constraints and risks.
|
|
488
516
|
|
|
489
517
|
| Property | Value |
|
|
490
|
-
|
|
518
|
+
| :--- | :--- |
|
|
491
519
|
| **Spawned by** | `/mindforge:plan-phase`, `/mindforge:agent assumptions-analyzer-extend` |
|
|
492
520
|
| **Tools** | Read, Write, Bash, Grep, Glob |
|
|
493
521
|
| **Color** | `blue` |
|
|
@@ -501,10 +529,11 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
501
529
|
---
|
|
502
530
|
|
|
503
531
|
### mindforge-codebase-mapper (The Explorer)
|
|
532
|
+
|
|
504
533
|
**Role:** Senior engineer specialized in autonomous codebase discovery and high-fidelity documentation.
|
|
505
534
|
|
|
506
535
|
| Property | Value |
|
|
507
|
-
|
|
536
|
+
| :--- | :--- |
|
|
508
537
|
| **Spawned by** | `/mindforge:map-codebase`, `/mindforge:agent codebase-mapper` |
|
|
509
538
|
| **Tools** | Read, Write, Bash, Grep, Glob |
|
|
510
539
|
| **Color** | `cyan` |
|
|
@@ -517,11 +546,12 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
517
546
|
|
|
518
547
|
---
|
|
519
548
|
|
|
520
|
-
### mindforge-codebase-mapper (
|
|
549
|
+
### mindforge-codebase-mapper-extend (The Structuralist)
|
|
550
|
+
|
|
521
551
|
**Role:** Generates structured maps of tech stacks, architecture, and conventions.
|
|
522
552
|
|
|
523
553
|
| Property | Value |
|
|
524
|
-
|
|
554
|
+
| :--- | :--- |
|
|
525
555
|
| **Spawned by** | `/mindforge:map-codebase`, `/mindforge:agent codebase-mapper-extend` |
|
|
526
556
|
| **Tools** | Read, Write, Bash, Grep, Glob |
|
|
527
557
|
| **Color** | `cyan` |
|
|
@@ -534,11 +564,12 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
534
564
|
|
|
535
565
|
---
|
|
536
566
|
|
|
537
|
-
### mindforge-roadmapper (
|
|
538
|
-
|
|
567
|
+
### mindforge-roadmapper-extend (The Continuity Lead)
|
|
568
|
+
|
|
569
|
+
**Role:** Enhanced execution strategist focused on requirement traceability and phase continuity.
|
|
539
570
|
|
|
540
571
|
| Property | Value |
|
|
541
|
-
|
|
572
|
+
| :--- | :--- |
|
|
542
573
|
| **Spawned by** | `/mindforge:milestone`, `/mindforge:agent roadmapper-extend` |
|
|
543
574
|
| **Tools** | Read, Write, Bash, Grep, Glob, Browser |
|
|
544
575
|
| **Color** | `cyan` |
|
|
@@ -551,11 +582,12 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
551
582
|
|
|
552
583
|
---
|
|
553
584
|
|
|
554
|
-
### mindforge-user-profiler (The
|
|
555
|
-
|
|
585
|
+
### mindforge-user-profiler (The Relationship Manager)
|
|
586
|
+
|
|
587
|
+
**Role:** Analyzes session history to personalize agent interactions and technical alignment.
|
|
556
588
|
|
|
557
589
|
| Property | Value |
|
|
558
|
-
|
|
590
|
+
| :--- | :--- |
|
|
559
591
|
| **Spawned by** | `/mindforge:agent user-profiler` |
|
|
560
592
|
| **Tools** | Read, Write, Bash, Grep, Glob |
|
|
561
593
|
| **Color** | `magenta` |
|
|
@@ -570,39 +602,39 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
570
602
|
|
|
571
603
|
## Tool Permissions Summary
|
|
572
604
|
|
|
573
|
-
| Persona | Read | Write | Bash | Grep | Glob | CmdStatus | Browser | Terminal |
|
|
574
|
-
|
|
575
|
-
| **Analyst** | ✓ | ✓ | ✓ | ✓ | | | | |
|
|
576
|
-
| **Architect** | ✓ | ✓ | ✓ | ✓ | ✓ | | | |
|
|
577
|
-
| **Developer** | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | |
|
|
578
|
-
| **QA Engineer** | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | |
|
|
579
|
-
| **Security Reviewer** | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | |
|
|
580
|
-
| **Debug Specialist** | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ |
|
|
581
|
-
| **Roadmapper** | ✓ | ✓ | ✓ | ✓ | ✓ | | | |
|
|
582
|
-
| **Assumptions Analyzer** | ✓ | ✓ | ✓ | ✓ | ✓ | | | |
|
|
583
|
-
| **Research Agent** | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ | |
|
|
605
|
+
| Persona | Read | Write | Bash | Grep | Glob | CmdStatus | Browser | Terminal | Context7 |
|
|
606
|
+
| :--- | :--- | :--- | :--- | :--- | :--- | :--- | :--- | :--- | :--- |
|
|
607
|
+
| **Analyst** | ✓ | ✓ | ✓ | ✓ | | | | | |
|
|
608
|
+
| **Architect** | ✓ | ✓ | ✓ | ✓ | ✓ | | | | |
|
|
609
|
+
| **Developer** | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | | ✓ |
|
|
610
|
+
| **QA Engineer** | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | | |
|
|
611
|
+
| **Security Reviewer** | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | | |
|
|
612
|
+
| **Debug Specialist** | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ | ✓ |
|
|
613
|
+
| **Roadmapper** | ✓ | ✓ | ✓ | ✓ | ✓ | | | | |
|
|
614
|
+
| **Assumptions Analyzer** | ✓ | ✓ | ✓ | ✓ | ✓ | | | | |
|
|
615
|
+
| **Research Agent** | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ | | ✓ |
|
|
584
616
|
| **Decision Architect** | ✓ | ✓ | ✓ | ✓ | ✓ | | | |
|
|
585
|
-
| **Release Manager** | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | |
|
|
586
|
-
| **Tech Writer** | ✓ | ✓ | ✓ | ✓ | ✓ | | | |
|
|
587
|
-
| **Coverage Specialist** | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | |
|
|
588
|
-
| **Advisor Researcher** | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ | |
|
|
589
|
-
| **Project Researcher** | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ | |
|
|
590
|
-
| **Research Synthesizer** | ✓ | ✓ | ✓ | ✓ | ✓ | | | |
|
|
591
|
-
| **UI Researcher** | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ | |
|
|
592
|
-
| **Phase Researcher** | ✓ | ✓ | ✓ | ✓ | ✓ | | | |
|
|
593
|
-
| **Planner** | ✓ | ✓ | ✓ | ✓ | ✓ | | | |
|
|
594
|
-
| **Integration Checker
|
|
595
|
-
| **Nyquist Auditor** | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ |
|
|
596
|
-
| **Plan Checker** | ✓ | ✓ | ✓ | ✓ | ✓ | | | |
|
|
597
|
-
| **UI Auditor** | ✓ | ✓ | ✓ | ✓ | ✓ | | | |
|
|
598
|
-
| **UI Checker** | ✓ | ✓ | ✓ | ✓ | ✓ | | | |
|
|
599
|
-
| **Verifier** | ✓ | ✓ | ✓ | ✓ | ✓ | | | |
|
|
600
|
-
| **Executor** | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ |
|
|
601
|
-
| **Debugger** | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
|
|
602
|
-
| **Assumptions (Ext)** | ✓ | ✓ | ✓ | ✓ | ✓ | | | |
|
|
603
|
-
| **Codebase Map (Ext)** | ✓ | ✓ | ✓ | ✓ | ✓ | | | |
|
|
604
|
-
| **Roadmapper (Ext)** | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ | |
|
|
605
|
-
| **User Profiler** | ✓ | ✓ | ✓ | ✓ | ✓ | | | |
|
|
617
|
+
| **Release Manager** | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | | |
|
|
618
|
+
| **Tech Writer** | ✓ | ✓ | ✓ | ✓ | ✓ | | | | ✓ |
|
|
619
|
+
| **Coverage Specialist** | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | | |
|
|
620
|
+
| **Advisor Researcher** | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ | | ✓ |
|
|
621
|
+
| **Project Researcher** | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ | | ✓ |
|
|
622
|
+
| **Research Synthesizer** | ✓ | ✓ | ✓ | ✓ | ✓ | | | | |
|
|
623
|
+
| **UI Researcher** | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ | | ✓ |
|
|
624
|
+
| **Phase Researcher** | ✓ | ✓ | ✓ | ✓ | ✓ | | | | ✓ |
|
|
625
|
+
| **Planner** | ✓ | ✓ | ✓ | ✓ | ✓ | | | | |
|
|
626
|
+
| **Integration Checker** | ✓ | ✓ | ✓ | ✓ | ✓ | | | | |
|
|
627
|
+
| **Nyquist Auditor** | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ | |
|
|
628
|
+
| **Plan Checker** | ✓ | ✓ | ✓ | ✓ | ✓ | | | | |
|
|
629
|
+
| **UI Auditor** | ✓ | ✓ | ✓ | ✓ | ✓ | | | | |
|
|
630
|
+
| **UI Checker** | ✓ | ✓ | ✓ | ✓ | ✓ | | | | |
|
|
631
|
+
| **Verifier** | ✓ | ✓ | ✓ | ✓ | ✓ | | | | |
|
|
632
|
+
| **Executor** | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ | |
|
|
633
|
+
| **Debugger** | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
|
|
634
|
+
| **Assumptions (Ext)** | ✓ | ✓ | ✓ | ✓ | ✓ | | | | |
|
|
635
|
+
| **Codebase Map (Ext)** | ✓ | ✓ | ✓ | ✓ | ✓ | | | | |
|
|
636
|
+
| **Roadmapper (Ext)** | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ | | |
|
|
637
|
+
| **User Profiler** | ✓ | ✓ | ✓ | ✓ | ✓ | | | | |
|
|
606
638
|
|
|
607
639
|
**Principle of Least Privilege:**
|
|
608
640
|
- **Analyzers** and **Architects** primarily use discovery tools to inform design.
|