mindforge-cc 5.0.0 → 5.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.agent/CLAUDE.md +14 -12
- package/.agent/hooks/mindforge-session-init_extended.js +42 -0
- package/.agent/settings.json +4 -0
- package/.agent/skills/mindforge-brainstorming/SKILL.md +164 -0
- package/.agent/skills/mindforge-brainstorming/scripts/frame-template.html +214 -0
- package/.agent/skills/mindforge-brainstorming/scripts/helper.js +88 -0
- package/.agent/skills/mindforge-brainstorming/scripts/server.cjs +354 -0
- package/.agent/skills/mindforge-brainstorming/scripts/start-server.sh +148 -0
- package/.agent/skills/mindforge-brainstorming/scripts/stop-server.sh +56 -0
- package/.agent/skills/mindforge-brainstorming/spec-document-reviewer-prompt.md +49 -0
- package/.agent/skills/mindforge-brainstorming/visual-companion.md +287 -0
- package/.agent/skills/mindforge-debug_extended/CREATION-LOG.md +119 -0
- package/.agent/skills/mindforge-debug_extended/SKILL.md +296 -0
- package/.agent/skills/mindforge-debug_extended/condition-based-waiting-example.ts +158 -0
- package/.agent/skills/mindforge-debug_extended/condition-based-waiting.md +115 -0
- package/.agent/skills/mindforge-debug_extended/defense-in-depth.md +122 -0
- package/.agent/skills/mindforge-debug_extended/find-polluter.sh +63 -0
- package/.agent/skills/mindforge-debug_extended/root-cause-tracing.md +169 -0
- package/.agent/skills/mindforge-debug_extended/test-academic.md +14 -0
- package/.agent/skills/mindforge-debug_extended/test-pressure-1.md +58 -0
- package/.agent/skills/mindforge-debug_extended/test-pressure-2.md +68 -0
- package/.agent/skills/mindforge-debug_extended/test-pressure-3.md +69 -0
- package/.agent/skills/mindforge-execute-phase_extended/SKILL.md +70 -0
- package/.agent/skills/mindforge-neural-orchestrator/SKILL.md +115 -0
- package/.agent/skills/mindforge-neural-orchestrator/references/codex-tools.md +100 -0
- package/.agent/skills/mindforge-neural-orchestrator/references/gemini-tools.md +33 -0
- package/.agent/skills/mindforge-parallel-mesh_extended/SKILL.md +182 -0
- package/.agent/skills/mindforge-plan-phase_extended/SKILL.md +152 -0
- package/.agent/skills/mindforge-plan-phase_extended/plan-document-reviewer-prompt.md +49 -0
- package/.agent/skills/mindforge-review-inbound/SKILL.md +213 -0
- package/.agent/skills/mindforge-review-request/SKILL.md +105 -0
- package/.agent/skills/mindforge-review-request/code-reviewer.md +146 -0
- package/.agent/skills/mindforge-ship_extended/SKILL.md +200 -0
- package/.agent/skills/mindforge-skill-creation/SKILL.md +655 -0
- package/.agent/skills/mindforge-skill-creation/anthropic-best-practices.md +1150 -0
- package/.agent/skills/mindforge-skill-creation/examples/CLAUDE_MD_TESTING.md +189 -0
- package/.agent/skills/mindforge-skill-creation/graphviz-conventions.dot +172 -0
- package/.agent/skills/mindforge-skill-creation/persuasion-principles.md +187 -0
- package/.agent/skills/mindforge-skill-creation/render-graphs.js +168 -0
- package/.agent/skills/mindforge-skill-creation/testing-skills-with-subagents.md +384 -0
- package/.agent/skills/mindforge-swarm-execution/SKILL.md +277 -0
- package/.agent/skills/mindforge-swarm-execution/code-quality-reviewer-prompt.md +26 -0
- package/.agent/skills/mindforge-swarm-execution/implementer-prompt.md +113 -0
- package/.agent/skills/mindforge-swarm-execution/spec-reviewer-prompt.md +61 -0
- package/.agent/skills/mindforge-tdd_extended/SKILL.md +371 -0
- package/.agent/skills/mindforge-tdd_extended/testing-anti-patterns.md +299 -0
- package/.agent/skills/mindforge-verify-work_extended/SKILL.md +139 -0
- package/.agent/skills/mindforge-workspace-isolated/SKILL.md +218 -0
- package/.agent/workflows/mindforge-verify-work.md +5 -0
- package/.agent/workflows/mindforge:brainstorming.md +16 -0
- package/.agent/workflows/mindforge:debug.md +4 -2
- package/.agent/workflows/mindforge:execute-phase.md +12 -0
- package/.agent/workflows/mindforge:plan-phase.md +11 -0
- package/.agent/workflows/mindforge:ship.md +6 -1
- package/.agent/workflows/mindforge:tdd.md +7 -2
- package/CHANGELOG.md +243 -115
- package/MINDFORGE.md +17 -9
- package/README.md +2 -2
- package/RELEASENOTES.md +16 -7
- package/bin/memory/federated-sync.js +82 -2
- package/docs/INTELLIGENCE-MESH.md +7 -3
- package/docs/PERSONAS.md +150 -2
- package/docs/architecture/V5-ENTERPRISE.md +8 -7
- package/docs/commands-reference.md +20 -1
- package/docs/governance-guide.md +13 -7
- package/docs/troubleshooting.md +24 -4
- package/docs/user-guide.md +37 -19
- package/package.json +1 -1
package/docs/user-guide.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# MindForge User Guide (v5.
|
|
1
|
+
# MindForge User Guide (v5.1.0)
|
|
2
2
|
|
|
3
3
|
This guide gets you from install to productive, with the minimum needed to run MindForge in a real project. It assumes Node.js 18+.
|
|
4
4
|
|
|
@@ -62,27 +62,27 @@ This analyzes your code, generating `.planning/ARCHITECTURE.md` and inferred dev
|
|
|
62
62
|
|
|
63
63
|
---
|
|
64
64
|
|
|
65
|
-
## 5. Unified Workflow
|
|
65
|
+
## 5. Unified Workflow (Enabled by Protocol Mesh)
|
|
66
66
|
|
|
67
|
-
MindForge
|
|
67
|
+
MindForge v5.1.0 uses a unified 4-pillar workflow, now hardened by the **Neural Protocol Mesh**. Every core command automatically activates **Protocol Step 0** for maximum tactical rigor.
|
|
68
68
|
|
|
69
69
|
```bash
|
|
70
|
-
/mindforge:plan-phase [N] # discuss → research → plan
|
|
71
|
-
/mindforge:execute-phase [N] # parallel execution of task plans
|
|
72
|
-
/mindforge:verify-phase [N] # UAT + automated validation
|
|
73
|
-
/mindforge:ship [N] # generate changelog + create PR
|
|
70
|
+
/mindforge:plan-phase [N] # discuss → research → plan (Step 0: brainstorming)
|
|
71
|
+
/mindforge:execute-phase [N] # parallel execution of task plans (Step 0: swarm-execution)
|
|
72
|
+
/mindforge:verify-phase [N] # UAT + automated validation (Step 0: verify-work)
|
|
73
|
+
/mindforge:ship [N] # generate changelog + create PR (Step 0: ship)
|
|
74
74
|
```
|
|
75
75
|
|
|
76
76
|
---
|
|
77
77
|
|
|
78
78
|
## 6. High-Performance Personas
|
|
79
79
|
|
|
80
|
-
MindForge
|
|
80
|
+
MindForge v5.1.0 features 46+ specialized personas. Each persona is optimized for a specific stage of the lifecycle.
|
|
81
81
|
|
|
82
|
-
- **
|
|
83
|
-
- **
|
|
84
|
-
- **
|
|
85
|
-
- **
|
|
82
|
+
- **Neural Orchestrator**: Activates and manages the advanced protocol layer.
|
|
83
|
+
- **Brainstormer**: Expert in deep requirements discovery and behavioral ideation.
|
|
84
|
+
- **Swarm Pilot**: Orchestrates multiple independent implementation tasks.
|
|
85
|
+
- **TDD Master**: Enforces strict Test-Driven Development loops with adversarial rigor.
|
|
86
86
|
|
|
87
87
|
To switch personas or see the full list:
|
|
88
88
|
|
|
@@ -131,19 +131,20 @@ MindForge captures architectural decisions and bug patterns across sessions.
|
|
|
131
131
|
|
|
132
132
|
---
|
|
133
133
|
|
|
134
|
-
## 10. Self-Building Skills
|
|
134
|
+
## 10. Self-Building Skills & Protocol Creation
|
|
135
135
|
|
|
136
|
-
Extend MindForge by learning from documentation or
|
|
136
|
+
Extend MindForge by learning from documentation or authoring custom protocols.
|
|
137
137
|
|
|
138
138
|
```bash
|
|
139
139
|
/mindforge:learn https://docs.nextjs.org "nextjs-mastery"
|
|
140
|
+
/mindforge:skill-creation # Author a new high-fidelity protocol
|
|
140
141
|
```
|
|
141
142
|
|
|
142
143
|
---
|
|
143
144
|
|
|
144
145
|
## 11. Git & PR Integration
|
|
145
146
|
|
|
146
|
-
MindForge
|
|
147
|
+
MindForge features automated PR creation and commit management.
|
|
147
148
|
|
|
148
149
|
```bash
|
|
149
150
|
/mindforge:pr-branch "feature/auth-refactor"
|
|
@@ -152,9 +153,9 @@ MindForge v2.1.1 features automated PR creation and commit management.
|
|
|
152
153
|
|
|
153
154
|
---
|
|
154
155
|
|
|
155
|
-
## 12. Enterprise Resilience & Governance (v5.
|
|
156
|
+
## 12. Enterprise Resilience & Governance (v5.1.0)
|
|
156
157
|
|
|
157
|
-
MindForge v5 introduces mission-critical resilience and sovereign reasoning for enterprise engineering.
|
|
158
|
+
MindForge v5.1.0 introduces mission-critical resilience and sovereign reasoning for enterprise engineering.
|
|
158
159
|
|
|
159
160
|
### Multi-Cloud Arbitrage
|
|
160
161
|
MindForge automatically hedges against provider outages and optimizes for cost/latency.
|
|
@@ -176,7 +177,24 @@ When autonomous confidence drops or a critical decision is reached, MindForge cr
|
|
|
176
177
|
|
|
177
178
|
---
|
|
178
179
|
|
|
179
|
-
## 13.
|
|
180
|
+
## 13. Neural Protocol Mesh (Beast Addition)
|
|
181
|
+
|
|
182
|
+
The **Beast Addition** introduces 14 hardened protocols from the Superpowers framework, integrated into the core MindForge engine.
|
|
183
|
+
|
|
184
|
+
- **Brainstorming**: Deep ideation before planning.
|
|
185
|
+
- **Parallel Mesh**: Orchestrates context across multiple agents.
|
|
186
|
+
- **Swarm Execution**: Parallel implementation for high-velocity waves.
|
|
187
|
+
- **Isolated Workspaces**: Environment protection via git worktrees.
|
|
188
|
+
- **Enhanced TDD/Debug**: Strict loops for zero-defect delivery.
|
|
189
|
+
|
|
190
|
+
Activate the mesh for any session:
|
|
191
|
+
```bash
|
|
192
|
+
/mindforge:neural-orchestrator
|
|
193
|
+
```
|
|
194
|
+
|
|
195
|
+
---
|
|
196
|
+
|
|
197
|
+
## 14. Update & Maintenance
|
|
180
198
|
|
|
181
199
|
Keep your framework current with the latest personas and library updates:
|
|
182
200
|
|
|
@@ -186,7 +204,7 @@ Keep your framework current with the latest personas and library updates:
|
|
|
186
204
|
|
|
187
205
|
---
|
|
188
206
|
|
|
189
|
-
##
|
|
207
|
+
## 15. Reference & Support
|
|
190
208
|
|
|
191
209
|
- **Architecture**: `docs/architecture/V5-ENTERPRISE.md`
|
|
192
210
|
- **Governance**: `docs/governance-guide.md`
|