mindforge-cc 10.0.0 → 10.0.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/.mindforge/config.json +2 -2
- package/.mindforge/personas/a11y-architect.md +190 -0
- package/.mindforge/personas/accessibility-tester.md +108 -0
- package/.mindforge/personas/api-designer.md +190 -0
- package/.mindforge/personas/api-gateway-architect.md +168 -0
- package/.mindforge/personas/api-load-tester.md +144 -0
- package/.mindforge/personas/authentication-architect.md +163 -0
- package/.mindforge/personas/backup-recovery-specialist.md +181 -0
- package/.mindforge/personas/browser-extension-architect.md +96 -0
- package/.mindforge/personas/build-optimizer.md +160 -0
- package/.mindforge/personas/caching-strategist.md +180 -0
- package/.mindforge/personas/chaos-engineer.md +207 -0
- package/.mindforge/personas/cli-designer.md +151 -0
- package/.mindforge/personas/cloud-architect.md +229 -0
- package/.mindforge/personas/code-archeologist.md +176 -0
- package/.mindforge/personas/code-explorer.md +144 -0
- package/.mindforge/personas/compliance-auditor.md +190 -0
- package/.mindforge/personas/concurrency-expert.md +310 -0
- package/.mindforge/personas/config-management-expert.md +277 -0
- package/.mindforge/personas/contract-tester.md +224 -0
- package/.mindforge/personas/cost-analyst.md +209 -0
- package/.mindforge/personas/data-engineer.md +235 -0
- package/.mindforge/personas/data-privacy-engineer.md +187 -0
- package/.mindforge/personas/database-expert.md +223 -0
- package/.mindforge/personas/dependency-auditor.md +181 -0
- package/.mindforge/personas/design-system-engineer.md +115 -0
- package/.mindforge/personas/devops-engineer.md +561 -0
- package/.mindforge/personas/domain-modeler.md +127 -0
- package/.mindforge/personas/email-systems-engineer.md +119 -0
- package/.mindforge/personas/error-handling-architect.md +246 -0
- package/.mindforge/personas/event-driven-architect.md +134 -0
- package/.mindforge/personas/frontend-architect.md +107 -0
- package/.mindforge/personas/git-forensics.md +146 -0
- package/.mindforge/personas/git-workflow-expert.md +161 -0
- package/.mindforge/personas/go-specialist.md +249 -0
- package/.mindforge/personas/graphql-specialist.md +195 -0
- package/.mindforge/personas/incident-commander.md +214 -0
- package/.mindforge/personas/internationalization-expert.md +164 -0
- package/.mindforge/personas/java-specialist.md +271 -0
- package/.mindforge/personas/kubernetes-debugger.md +175 -0
- package/.mindforge/personas/logging-architect.md +200 -0
- package/.mindforge/personas/migration-specialist.md +237 -0
- package/.mindforge/personas/ml-engineer.md +312 -0
- package/.mindforge/personas/mobile-engineer.md +183 -0
- package/.mindforge/personas/monorepo-architect.md +323 -0
- package/.mindforge/personas/observability-engineer.md +217 -0
- package/.mindforge/personas/onboarding-guide.md +265 -0
- package/.mindforge/personas/performance-optimizer.md +293 -0
- package/.mindforge/personas/product-manager.md +105 -0
- package/.mindforge/personas/prompt-engineer.md +200 -0
- package/.mindforge/personas/python-specialist.md +277 -0
- package/.mindforge/personas/queue-architect.md +136 -0
- package/.mindforge/personas/react-specialist.md +97 -0
- package/.mindforge/personas/real-time-engineer.md +121 -0
- package/.mindforge/personas/refactoring-expert.md +117 -0
- package/.mindforge/personas/regex-craftsman.md +130 -0
- package/.mindforge/personas/rust-specialist.md +262 -0
- package/.mindforge/personas/sdk-designer.md +185 -0
- package/.mindforge/personas/search-engineer.md +290 -0
- package/.mindforge/personas/senior-reviewer.md +372 -0
- package/.mindforge/personas/seo-specialist.md +99 -0
- package/.mindforge/personas/spec-reviewer.md +172 -0
- package/.mindforge/personas/state-machine-designer.md +172 -0
- package/.mindforge/personas/swarm-templates.json +72 -18
- package/.mindforge/personas/tailwind-specialist.md +95 -0
- package/.mindforge/personas/tech-debt-analyst.md +200 -0
- package/.mindforge/personas/tech-stack-selector.md +118 -0
- package/.mindforge/personas/technical-interviewer.md +158 -0
- package/.mindforge/personas/test-data-engineer.md +169 -0
- package/.mindforge/personas/typescript-wizard.md +247 -0
- package/.mindforge/personas/ux-auditor.md +251 -0
- package/.mindforge/personas/webhook-designer.md +161 -0
- package/CHANGELOG.md +69 -2
- package/LICENSE +1 -1
- package/MINDFORGE.md +5 -5
- package/README.md +1 -1
- package/RELEASENOTES.md +121 -193
- package/SECURITY.md +108 -2
- package/bin/installer-core.js +1 -1
- package/bin/wizard/theme.js +2 -2
- package/docs/commands-reference.md +38 -2
- package/docs/getting-started.md +16 -6
- package/docs/sdk-reference.md +1 -1
- package/docs/troubleshooting.md +3 -3
- package/docs/user-guide.md +31 -11
- package/examples/starter-project/MINDFORGE.md +2 -2
- package/package.json +6 -2
package/bin/installer-core.js
CHANGED
|
@@ -748,7 +748,7 @@ function collectManifestStats() {
|
|
|
748
748
|
}
|
|
749
749
|
} catch (e) {
|
|
750
750
|
// Fallback to default values if counting fails
|
|
751
|
-
return { personas:
|
|
751
|
+
return { personas: 108, skills: 10, governance: 4, integrations: 6, actions: 60, docs: 12, templates: 18 };
|
|
752
752
|
}
|
|
753
753
|
|
|
754
754
|
return stats;
|
package/bin/wizard/theme.js
CHANGED
|
@@ -94,7 +94,7 @@ const Theme = {
|
|
|
94
94
|
* Success Banner ( V2 Architectural Style)
|
|
95
95
|
*/
|
|
96
96
|
printSuccessV2(runtime, scope, stats = {}) {
|
|
97
|
-
const { personas =
|
|
97
|
+
const { personas = 108, skills = 12, governance = 4, integrations = 7 } = stats;
|
|
98
98
|
const boxWidth = 72;
|
|
99
99
|
|
|
100
100
|
console.log(`\n ${this.colors.green('MINDFORGE is ready! ')} ${this.colors.dim('─'.repeat(boxWidth - 20))}╮`);
|
|
@@ -125,7 +125,7 @@ const Theme = {
|
|
|
125
125
|
* Print Manifest (Hardened for V2)
|
|
126
126
|
*/
|
|
127
127
|
printManifest(stats = {}) {
|
|
128
|
-
const { personas =
|
|
128
|
+
const { personas = 108, skills = 12, governance = 4, integrations = 7, actions = 60, docs = 12, templates = 18 } = stats;
|
|
129
129
|
|
|
130
130
|
console.log(` ${this.colors.bold('PAYLOAD MANIFEST')}`);
|
|
131
131
|
console.log(` ${this.colors.dim('┌' + '─'.repeat(74) + '┐')}`);
|
|
@@ -117,8 +117,6 @@ Connecting MindForge to enterprise systems and keeping the framework hardened.
|
|
|
117
117
|
|
|
118
118
|
| Command | Description |
|
|
119
119
|
| :--- | :--- |
|
|
120
|
-
| `/mindforge:sync-jira` | Synchronizes MindForge milestones and tasks with Jira tickets and status transitions. |
|
|
121
|
-
| `/mindforge:sync-confluence` | Exports architectural decisions and project documentation to Confluence spaces. |
|
|
122
120
|
| `/mindforge:approve [event]` | Issues a manual Tier 3 cryptographic signature for a sensitive or high-risk operation. |
|
|
123
121
|
| `/mindforge:health` | Runs comprehensive framework diagnostics across 7 categories with auto-repair loops. |
|
|
124
122
|
| `/mindforge:update` | Checks for, diffs, and applies MindForge framework updates in a safe, scope-preserving way. |
|
|
@@ -142,3 +140,41 @@ High-fidelity behaviors ported from the Superpowers library and hardened for pro
|
|
|
142
140
|
| `/mindforge:verify-work` | Multi-level truth verification protocol (substance, existence, wiring). |
|
|
143
141
|
| `/mindforge:retrospective` | Facilitates structured team retrospectives with objective telemetry and metrics. |
|
|
144
142
|
|
|
143
|
+
---
|
|
144
|
+
|
|
145
|
+
## 11. CLI Commands (`mindforge` binary)
|
|
146
|
+
|
|
147
|
+
After installation, the `mindforge` binary provides direct access to runtime operations. Use `--verbose` (`-v`) on any command for detailed output.
|
|
148
|
+
|
|
149
|
+
```bash
|
|
150
|
+
mindforge <command> [options]
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
| Command | Description |
|
|
154
|
+
| :--- | :--- |
|
|
155
|
+
| `security-scan` | Validate configuration and run security checks |
|
|
156
|
+
| `health` | Verify project health and installation integrity |
|
|
157
|
+
| `headless` | Run MindForge agent in headless (non-interactive) mode |
|
|
158
|
+
| `pr-review` | Run standard PR review logic |
|
|
159
|
+
| `cross-review` | Run advanced cross-model architecture review |
|
|
160
|
+
| `classify` | Classify changes into governance tiers |
|
|
161
|
+
| `approve` | Generate a governance approval signature to unblock Tier 3 gates |
|
|
162
|
+
| `validate-skill` | Run Level 1 & 2 validation on a SKILL.md file |
|
|
163
|
+
| `install-skill` | Install a skill to the correct tier folder |
|
|
164
|
+
| `register-skill` | Register a skill in MANIFEST.md |
|
|
165
|
+
| `audit-skill` | Record skill life cycle events in audit log |
|
|
166
|
+
| `remember` | Manage the long-term memory (knowledge graph) |
|
|
167
|
+
| `learn-skill` | Ingest source and generate a validated SKILL.md |
|
|
168
|
+
| `marketplace` | Search and install community skills |
|
|
169
|
+
| `spawn` | Spawn a persona essence (e.g., mf-planner) |
|
|
170
|
+
| `identity` | Invoke a specialized identity from /agents/ |
|
|
171
|
+
| `temporal` | Manage time-travel debugging and state history |
|
|
172
|
+
| `hindsight` | Inject a fix into a past point and regenerate state |
|
|
173
|
+
| `harvest` | Proactively harvest semantic intent from the intelligence mesh |
|
|
174
|
+
| `self-heal` | Auto-detect and repair reasoning drifts in the active swarm |
|
|
175
|
+
| `quantum-verify` | Verify framework integrity using post-quantum signatures |
|
|
176
|
+
| `metrics` | Display real-time velocity and quality metrics |
|
|
177
|
+
| `tokens` | Analyze token consumption and cost efficiency |
|
|
178
|
+
| `learning` | Consult or initialize the project agentic learning memory |
|
|
179
|
+
| `record-learning` | Append a new Learning Entry to the Evolution Log |
|
|
180
|
+
|
package/docs/getting-started.md
CHANGED
|
@@ -1,19 +1,29 @@
|
|
|
1
|
-
# MindForge — Getting Started
|
|
1
|
+
# MindForge — Getting Started (v10.0.1)
|
|
2
2
|
|
|
3
3
|
This guide gets you from zero to a working MindForge project in under five minutes.
|
|
4
4
|
|
|
5
|
+
## Prerequisites
|
|
6
|
+
|
|
7
|
+
- **Node.js 18+** (LTS recommended)
|
|
8
|
+
- No native build tools required — MindForge uses sql.js (pure WASM) for all database operations
|
|
9
|
+
|
|
5
10
|
## Install
|
|
6
11
|
|
|
7
|
-
MindForge is
|
|
12
|
+
MindForge is installed via `npx` for zero-config setup:
|
|
8
13
|
|
|
9
14
|
```bash
|
|
10
|
-
#
|
|
11
|
-
npx mindforge-cc
|
|
15
|
+
# Recommended (auto-detects your runtime)
|
|
16
|
+
npx mindforge-cc
|
|
12
17
|
|
|
13
|
-
#
|
|
14
|
-
npx mindforge-cc
|
|
18
|
+
# Antigravity (local development)
|
|
19
|
+
npx mindforge-cc --antigravity --local
|
|
20
|
+
|
|
21
|
+
# Claude Code (local, per project)
|
|
22
|
+
npx mindforge-cc --claude --local
|
|
15
23
|
```
|
|
16
24
|
|
|
25
|
+
After installation, the `mindforge` CLI command is available for runtime operations (health checks, security scans, headless execution, etc.).
|
|
26
|
+
|
|
17
27
|
## Initialise Your Project
|
|
18
28
|
|
|
19
29
|
Open your agentic runtime (Antigravity or Claude Code) in your repository and run:
|
package/docs/sdk-reference.md
CHANGED
package/docs/troubleshooting.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# MindForge Troubleshooting (v10.0.
|
|
1
|
+
# MindForge Troubleshooting (v10.0.1)
|
|
2
2
|
|
|
3
3
|
This page lists common issues and fast fixes. If you get stuck, start with
|
|
4
4
|
`/mindforge:health`.
|
|
@@ -54,14 +54,14 @@ npx mindforge-cc@latest --claude --local --force
|
|
|
54
54
|
```
|
|
55
55
|
Then run:
|
|
56
56
|
```
|
|
57
|
-
/mindforge:migrate --from v9.0.0 --to v10.0.
|
|
57
|
+
/mindforge:migrate --from v9.0.0 --to v10.0.1
|
|
58
58
|
```
|
|
59
59
|
|
|
60
60
|
### Schema mismatch warning on startup
|
|
61
61
|
**Fix:**
|
|
62
62
|
```
|
|
63
63
|
/mindforge:migrate --dry-run
|
|
64
|
-
/mindforge:migrate --from vX.Y.Z --to v10.0.
|
|
64
|
+
/mindforge:migrate --from vX.Y.Z --to v10.0.1
|
|
65
65
|
```
|
|
66
66
|
|
|
67
67
|
### AUDIT.jsonl parse errors
|
package/docs/user-guide.md
CHANGED
|
@@ -1,33 +1,51 @@
|
|
|
1
|
-
# MindForge User Guide (
|
|
1
|
+
# MindForge User Guide (v10.0.1)
|
|
2
2
|
|
|
3
|
-
This guide gets you from install to productive, with the minimum needed to run MindForge in a real project.
|
|
3
|
+
This guide gets you from install to productive, with the minimum needed to run MindForge in a real project.
|
|
4
|
+
|
|
5
|
+
## Prerequisites
|
|
6
|
+
|
|
7
|
+
- **Node.js 18+** (LTS recommended)
|
|
8
|
+
- No native build tools or compilation toolchain required (sql.js uses pure WASM)
|
|
4
9
|
|
|
5
10
|
## 1. Install
|
|
6
11
|
|
|
7
12
|
### Claude Code (global)
|
|
8
13
|
|
|
9
14
|
```bash
|
|
10
|
-
npx mindforge-cc
|
|
15
|
+
npx mindforge-cc --claude --global
|
|
11
16
|
```
|
|
12
17
|
|
|
13
18
|
### Claude Code (local, per project)
|
|
14
19
|
|
|
15
20
|
```bash
|
|
16
|
-
npx mindforge-cc
|
|
21
|
+
npx mindforge-cc --claude --local
|
|
17
22
|
```
|
|
18
23
|
|
|
19
24
|
### Antigravity
|
|
20
25
|
|
|
21
26
|
```bash
|
|
22
|
-
npx mindforge-cc
|
|
27
|
+
npx mindforge-cc --antigravity --local
|
|
23
28
|
```
|
|
24
29
|
|
|
25
30
|
### Specific Runtime (Universal)
|
|
26
31
|
|
|
27
32
|
```bash
|
|
28
|
-
npx mindforge-cc
|
|
33
|
+
npx mindforge-cc --runtime <name>
|
|
29
34
|
```
|
|
30
35
|
|
|
36
|
+
### Post-Install: The `mindforge` CLI
|
|
37
|
+
|
|
38
|
+
After installation, the `mindforge` binary is available for runtime commands:
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
mindforge health # Verify project integrity
|
|
42
|
+
mindforge security-scan # Run security checks
|
|
43
|
+
mindforge headless # Run agent in non-interactive mode
|
|
44
|
+
mindforge --verbose ... # Enable verbose output for debugging
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
Use `--verbose` (or `-v`) on any command for detailed diagnostic output.
|
|
48
|
+
|
|
31
49
|
---
|
|
32
50
|
|
|
33
51
|
## 2. Verify Installation
|
|
@@ -64,7 +82,7 @@ This analyzes your code, generating `.planning/ARCHITECTURE.md` and inferred dev
|
|
|
64
82
|
|
|
65
83
|
## 5. Unified Workflow (Enabled by Protocol Mesh)
|
|
66
84
|
|
|
67
|
-
MindForge
|
|
85
|
+
MindForge uses a unified 4-pillar workflow, hardened by the **Neural Protocol Mesh**. Every core command automatically activates **Protocol Step 0** for maximum tactical rigor.
|
|
68
86
|
|
|
69
87
|
```bash
|
|
70
88
|
/mindforge:plan-phase [N] # discuss → research → plan (Step 0: brainstorming)
|
|
@@ -77,7 +95,7 @@ MindForge v5.1.0 uses a unified 4-pillar workflow, now hardened by the **Neural
|
|
|
77
95
|
|
|
78
96
|
## 6. High-Performance Personas
|
|
79
97
|
|
|
80
|
-
MindForge
|
|
98
|
+
MindForge features 108 specialized personas. Each persona is optimized for a specific stage of the lifecycle.
|
|
81
99
|
|
|
82
100
|
- **Neural Orchestrator**: Activates and manages the advanced protocol layer.
|
|
83
101
|
- **Brainstormer**: Expert in deep requirements discovery and behavioral ideation.
|
|
@@ -118,6 +136,8 @@ Observe your agent waves, token spend, and milestone progress in real-time.
|
|
|
118
136
|
|
|
119
137
|
The dashboard provides a premium web interface at `http://localhost:7339`.
|
|
120
138
|
|
|
139
|
+
> **Authentication (v10.0.1+):** The dashboard now requires a bearer token for access. The token is printed to the console at startup. Pass it in the `Authorization` header or use the login prompt in the browser UI.
|
|
140
|
+
|
|
121
141
|
---
|
|
122
142
|
|
|
123
143
|
## 9. Persistent Knowledge & Memory
|
|
@@ -153,9 +173,9 @@ MindForge features automated PR creation and commit management.
|
|
|
153
173
|
|
|
154
174
|
---
|
|
155
175
|
|
|
156
|
-
## 12. Enterprise Resilience & Governance
|
|
176
|
+
## 12. Enterprise Resilience & Governance
|
|
157
177
|
|
|
158
|
-
MindForge
|
|
178
|
+
MindForge provides mission-critical resilience and sovereign reasoning for enterprise engineering.
|
|
159
179
|
|
|
160
180
|
### Multi-Cloud Arbitrage
|
|
161
181
|
MindForge automatically hedges against provider outages and optimizes for cost/latency.
|
|
@@ -216,7 +236,7 @@ Keep your framework current with the latest personas and library updates:
|
|
|
216
236
|
|
|
217
237
|
## 16. Mastering the Nexus: Temporal Steering
|
|
218
238
|
|
|
219
|
-
MindForge
|
|
239
|
+
MindForge allows you to "time-travel" through your agent's reasoning.
|
|
220
240
|
|
|
221
241
|
1. **Launch the Dashboard**: `/mindforge:dashboard --start --open`
|
|
222
242
|
2. **Navigate to 'Temporal'**: Use the horizontal slider to scrub through reasoning snapshots.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
NAME=ExampleProject
|
|
2
2
|
VERSION=1.0.0
|
|
3
|
-
DESCRIPTION=Starter example for MindForge v10.0.
|
|
4
|
-
MINDFORGE_VERSION_REQUIRED=10.0.
|
|
3
|
+
DESCRIPTION=Starter example for MindForge v10.0.1
|
|
4
|
+
MINDFORGE_VERSION_REQUIRED=10.0.1
|
|
5
5
|
|
|
6
6
|
# Model preferences
|
|
7
7
|
PLANNER_MODEL=claude-sonnet-4-6
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mindforge-cc",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.2",
|
|
4
4
|
"description": "MindForge — Sovereign Agentic Intelligence Framework. Bedrock Fortified: Production-Grade Architecture (v10)",
|
|
5
5
|
"bin": {
|
|
6
6
|
"mindforge-cc": "bin/install.js",
|
|
@@ -44,7 +44,11 @@
|
|
|
44
44
|
"agentic-framework",
|
|
45
45
|
"context-engineering",
|
|
46
46
|
"enterprise",
|
|
47
|
-
"mindforge"
|
|
47
|
+
"mindforge",
|
|
48
|
+
"wasm-sqlite",
|
|
49
|
+
"zero-native-deps",
|
|
50
|
+
"agent-orchestration",
|
|
51
|
+
"sovereign-ai"
|
|
48
52
|
],
|
|
49
53
|
"author": "sairamugge",
|
|
50
54
|
"license": "MIT",
|