mindforge-cc 2.1.0 → 2.1.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/.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/.planning/phases/01-migrate-gsd-to-mindforge/.gitkeep +0 -0
- package/CHANGELOG.md +15 -0
- package/README.md +2 -2
- package/docs/PERSONAS.md +41 -41
- package/docs/commands-reference.md +1 -0
- package/docs/references/checkpoints.md +778 -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/skills-authoring-guide.md +1 -1
- 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/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/System/CONFIG.json +43 -0
- package/docs/templates/System/CONTEXT.md +352 -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/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/user-guide.md +1 -1
- package/package.json +7 -2
- /package/docs/{Context → context}/Master-Context.md +0 -0
- /package/docs/{reference → references}/audit-events.md +0 -0
- /package/docs/{reference → references}/commands.md +0 -0
- /package/docs/{reference → references}/config-reference.md +0 -0
- /package/docs/{reference → references}/sdk-api.md +0 -0
- /package/docs/{reference → references}/skills-api.md +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: mindforge-project-researcher
|
|
3
3
|
description: Principal domain researcher. Investigates ecosystem, feasibility, and technical constraints before project or milestone creation.
|
|
4
|
-
tools: Read, Write, Bash, Grep, Glob, search_web, read_url_content
|
|
4
|
+
tools: Read, Write, Bash, Grep, Glob, search_web, read_url_content, Context7
|
|
5
5
|
color: cyan
|
|
6
6
|
---
|
|
7
7
|
|
|
@@ -32,8 +32,8 @@ The most valuable thing you can find is what *won't* work. Identify the "Critica
|
|
|
32
32
|
<process>
|
|
33
33
|
|
|
34
34
|
<step name="ecosystem_discovery">
|
|
35
|
-
Identify
|
|
36
|
-
|
|
35
|
+
Identify primary framework choices. Query `Context7` for current documentation, code examples, and ecosystem standards.
|
|
36
|
+
Supplement with manual search for popularity and community sentiment.
|
|
37
37
|
</step>
|
|
38
38
|
|
|
39
39
|
<step name="feasibility_assessment">
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: mindforge-research-agent
|
|
3
3
|
description: Technical research specialist with 1M+ token context window. Ingests large documentation sets and codebases to identify patterns, debt, and integration paths.
|
|
4
|
-
tools: Read, Write, Bash, Grep, Glob, Browser
|
|
4
|
+
tools: Read, Write, Bash, Grep, Glob, Browser, Context7
|
|
5
5
|
color: cyan
|
|
6
6
|
---
|
|
7
7
|
|
|
@@ -38,9 +38,9 @@ Identify the primary sources: Existing code, external URL docs, or local regulat
|
|
|
38
38
|
</step>
|
|
39
39
|
|
|
40
40
|
<step name="deep_ingestion">
|
|
41
|
-
Use `
|
|
41
|
+
Use `Context7` MCP as the primary engine for external documentation and code examples. Fallback to `Browser` for niche sites or non-standard documentation. Use `Read` for large local files.
|
|
42
42
|
Look for:
|
|
43
|
-
- API contracts and examples.
|
|
43
|
+
- API contracts and examples (via Context7).
|
|
44
44
|
- Performance limits.
|
|
45
45
|
- Known pitfalls/issues.
|
|
46
46
|
- Licensing and security status.
|
|
@@ -95,6 +95,7 @@ Highlight:
|
|
|
95
95
|
|
|
96
96
|
<critical_rules>
|
|
97
97
|
- **NO GUESSING**: If the documentation is unclear, state it as an "Open Question." Never fill gaps with hallucinated details.
|
|
98
|
+
- **CONTEXT7 FIRST**: Always query Context7 for library documentation before manual browsing.
|
|
98
99
|
- **ABSOLUTE PATHS**: Always cite your sources with absolute paths or valid URLs.
|
|
99
100
|
- **CONTEXT OVER BREVITY**: When researching complex integrations, favor detail. The Decision Architect needs the "Why" and the "How."
|
|
100
101
|
</critical_rules>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: mindforge-tech-writer
|
|
3
3
|
description: Senior technical writer and communication specialist. Produces minimal, high-utility documentation for developers and stakeholders.
|
|
4
|
-
tools: Read, Write, Bash, Grep, Glob
|
|
4
|
+
tools: Read, Write, Bash, Grep, Glob, Context7
|
|
5
5
|
color: cyan
|
|
6
6
|
---
|
|
7
7
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: mindforge-ui-researcher
|
|
3
3
|
description: Produced design contracts (UI-SPEC.md) for frontend phases. Researches stack, tokens, and components.
|
|
4
|
-
tools: Read, Write, Bash, Grep, Glob, search_web
|
|
4
|
+
tools: Read, Write, Bash, Grep, Glob, search_web, Context7
|
|
5
5
|
color: #E879F9
|
|
6
6
|
---
|
|
7
7
|
|
package/.planning/ROADMAP.md
CHANGED
|
File without changes
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.1.1] — Core Migration Finalization — 2026-03-25
|
|
4
|
+
|
|
5
|
+
🧩 **MindForge v2.1.1 — Core Migration Finalization**
|
|
6
|
+
|
|
7
|
+
This release completes the structural rebranding and migration of the GSD framework into MindForge. It finalizes the path alignment for all 120+ assets and hardens the core configuration management.
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
- **Finalized Path Mapping**: All framework assets now reside in a unified, flat `.agent/` structure.
|
|
11
|
+
- **Rebranded Lifecycle Hooks**: 5 new high-performance hooks for context monitoring, prompt guarding, and status line updates.
|
|
12
|
+
- **Enterprise Manifest**: New `file-manifest.json` with multi-project traceability.
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
- **Zero-Watermark Integrity**: All residual "GSD" and "get-shit-done" identifiers have been eliminated from the codebase, metadata, and configuration paths.
|
|
16
|
+
- **Hardened Settings**: `settings.json` now features dynamic hook pathing for increased portability.
|
|
17
|
+
|
|
3
18
|
## [2.1.0] — The Specialized Expansion — 2026-03-24
|
|
4
19
|
|
|
5
20
|
🧩 **MindForge v2.1.0 — The Specialized Expansion**
|
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
# MindForge — Enterprise Agentic Framework (v2.
|
|
1
|
+
# MindForge — Enterprise Agentic Framework (v2.1.1)
|
|
2
2
|
|
|
3
3
|
MindForge turns Claude Code and Antigravity into production-grade engineering
|
|
4
4
|
partners with governance, observability, and a disciplined workflow engine.
|
|
5
|
-
Release published: v2.
|
|
5
|
+
Release published: v2.1.1.
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
npx mindforge-cc@latest
|
package/docs/PERSONAS.md
CHANGED
|
@@ -64,7 +64,7 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
64
64
|
| Property | Value |
|
|
65
65
|
| --- | --- |
|
|
66
66
|
| **Spawned by** | `/mindforge:execute-phase`, `/mindforge:agent developer` |
|
|
67
|
-
| **Tools** | Read, Write, Bash, Grep, Glob, CommandStatus |
|
|
67
|
+
| **Tools** | Read, Write, Bash, Grep, Glob, CommandStatus, Context7 |
|
|
68
68
|
| **Color** | `green` |
|
|
69
69
|
| **Produces** | Source code, Unit tests, Implementation Summaries |
|
|
70
70
|
|
|
@@ -115,7 +115,7 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
115
115
|
| Property | Value |
|
|
116
116
|
|----------|-------|
|
|
117
117
|
| **Spawned by** | `/mindforge:debug`, `/mindforge:agent debug-specialist` |
|
|
118
|
-
| **Tools** | Read, Write, Bash, Grep, Glob, CommandStatus, ReadTerminal |
|
|
118
|
+
| **Tools** | Read, Write, Bash, Grep, Glob, CommandStatus, ReadTerminal, Context7 |
|
|
119
119
|
| **Color** | `orange` |
|
|
120
120
|
| **Produces** | `DEBUG-REPORT.md` (RCA) |
|
|
121
121
|
|
|
@@ -166,7 +166,7 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
166
166
|
| Property | Value |
|
|
167
167
|
|----------|-------|
|
|
168
168
|
| **Spawned by** | `/mindforge:research`, `/mindforge:agent research-agent` |
|
|
169
|
-
| **Tools** | Read, Write, Bash, Grep, Glob, Browser |
|
|
169
|
+
| **Tools** | Read, Write, Bash, Grep, Glob, Browser, Context7 |
|
|
170
170
|
| **Color** | `cyan` |
|
|
171
171
|
| **Produces** | `RESEARCH-NOTES-*.md` |
|
|
172
172
|
|
|
@@ -217,7 +217,7 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
217
217
|
| Property | Value |
|
|
218
218
|
|----------|-------|
|
|
219
219
|
| **Spawned by** | `/mindforge:ship`, `/mindforge:agent tech-writer` |
|
|
220
|
-
| **Tools** | Read, Write, Bash, Grep, Glob |
|
|
220
|
+
| **Tools** | Read, Write, Bash, Grep, Glob, Context7 |
|
|
221
221
|
| **Color** | `cyan` |
|
|
222
222
|
| **Produces** | `README.md`, API Reference, Runbooks |
|
|
223
223
|
|
|
@@ -251,7 +251,7 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
251
251
|
| Property | Value |
|
|
252
252
|
|----------|-------|
|
|
253
253
|
| **Spawned by** | `/mindforge:research`, `/mindforge:agent advisor-researcher` |
|
|
254
|
-
| **Tools** | Read, Write, Bash, Grep, Glob, Browser |
|
|
254
|
+
| **Tools** | Read, Write, Bash, Grep, Glob, Browser, Context7 |
|
|
255
255
|
| **Color** | `cyan` |
|
|
256
256
|
| **Produces** | Comparison tables, Rationale documents |
|
|
257
257
|
|
|
@@ -268,7 +268,7 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
268
268
|
| Property | Value |
|
|
269
269
|
|----------|-------|
|
|
270
270
|
| **Spawned by** | `/mindforge:init-project`, `/mindforge:agent project-researcher` |
|
|
271
|
-
| **Tools** | Read, Write, Bash, Grep, Glob, Browser |
|
|
271
|
+
| **Tools** | Read, Write, Bash, Grep, Glob, Browser, Context7 |
|
|
272
272
|
| **Color** | `purple` |
|
|
273
273
|
| **Produces** | `SUMMARY.md`, `STACK.md`, `ARCHITECTURE.md` |
|
|
274
274
|
|
|
@@ -302,7 +302,7 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
302
302
|
| Property | Value |
|
|
303
303
|
|----------|-------|
|
|
304
304
|
| **Spawned by** | `/mindforge:plan-phase`, `/mindforge:agent ui-researcher` |
|
|
305
|
-
| **Tools** | Read, Write, Bash, Grep, Glob, Browser |
|
|
305
|
+
| **Tools** | Read, Write, Bash, Grep, Glob, Browser, Context7 |
|
|
306
306
|
| **Color** | `#E879F9` |
|
|
307
307
|
| **Produces** | `UI-SPEC.md` |
|
|
308
308
|
|
|
@@ -319,7 +319,7 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
319
319
|
| Property | Value |
|
|
320
320
|
|----------|-------|
|
|
321
321
|
| **Spawned by** | `/mindforge:plan-phase`, `/mindforge:agent phase-researcher` |
|
|
322
|
-
| **Tools** | Read, Write, Bash, Grep, Glob |
|
|
322
|
+
| **Tools** | Read, Write, Bash, Grep, Glob, Context7 |
|
|
323
323
|
| **Color** | `blue` |
|
|
324
324
|
| **Produces** | `RESEARCH.md` |
|
|
325
325
|
|
|
@@ -472,7 +472,7 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
472
472
|
| Property | Value |
|
|
473
473
|
|----------|-------|
|
|
474
474
|
| **Spawned by** | `/mindforge:debug`, `/mindforge:agent debugger` |
|
|
475
|
-
| **Tools** | Read, Write, Bash, Grep, Glob, CmdStatus, ReadTerminal, Browser |
|
|
475
|
+
| **Tools** | Read, Write, Bash, Grep, Glob, CmdStatus, ReadTerminal, Browser, Context7 |
|
|
476
476
|
| **Color** | `orange` |
|
|
477
477
|
| **Produces** | `DEBUG-REPORT.md` (RCA) |
|
|
478
478
|
|
|
@@ -570,39 +570,39 @@ MindForge uses a multi-agent orchestration model where specialized personas are
|
|
|
570
570
|
|
|
571
571
|
## Tool Permissions Summary
|
|
572
572
|
|
|
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** | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ | |
|
|
573
|
+
| Persona | Read | Write | Bash | Grep | Glob | CmdStatus | Browser | Terminal | Context7 |
|
|
574
|
+
|---------|------|-------|------|------|------|-----------|---------|----------|----------|
|
|
575
|
+
| **Analyst** | ✓ | ✓ | ✓ | ✓ | | | | | |
|
|
576
|
+
| **Architect** | ✓ | ✓ | ✓ | ✓ | ✓ | | | | |
|
|
577
|
+
| **Developer** | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | | ✓ |
|
|
578
|
+
| **QA Engineer** | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | | |
|
|
579
|
+
| **Security Reviewer** | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | | |
|
|
580
|
+
| **Debug Specialist** | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ | ✓ |
|
|
581
|
+
| **Roadmapper** | ✓ | ✓ | ✓ | ✓ | ✓ | | | | |
|
|
582
|
+
| **Assumptions Analyzer** | ✓ | ✓ | ✓ | ✓ | ✓ | | | | |
|
|
583
|
+
| **Research Agent** | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ | | ✓ |
|
|
584
584
|
| **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** | ✓ | ✓ | ✓ | ✓ | ✓ | | | |
|
|
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** | ✓ | ✓ | ✓ | ✓ | ✓ | | | | |
|
|
606
606
|
|
|
607
607
|
**Principle of Least Privilege:**
|
|
608
608
|
- **Analyzers** and **Architects** primarily use discovery tools to inform design.
|
|
@@ -12,4 +12,5 @@
|
|
|
12
12
|
| `/mindforge:learn [SRC]` | Automatically capture skills from Docs, Sessions, or npm |
|
|
13
13
|
| `/mindforge:marketplace [SEARCH]`| Search, install, and publish community skills |
|
|
14
14
|
| `/mindforge:new-runtime` | Scaffold custom runtime configurations for any AI agent |
|
|
15
|
+
| `/mindforge:research` | Deep research via Context7/Gemini 1.5 Pro |
|
|
15
16
|
|