mindforge-cc 11.9.0 → 11.9.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (201) hide show
  1. package/.agent/mindforge/consult.md +1 -1
  2. package/.agent/mindforge/cost-report.md +1 -1
  3. package/.agent/mindforge/ship.md +2 -2
  4. package/.agent/mindforge/update.md +1 -1
  5. package/.agent/mindforge/wf-catalog.md +5 -2
  6. package/.claude/commands/mindforge/consult.md +1 -1
  7. package/.claude/commands/mindforge/cost-report.md +1 -1
  8. package/.claude/commands/mindforge/ship.md +2 -2
  9. package/.claude/commands/mindforge/skill-tdd.md +53 -0
  10. package/.claude/commands/mindforge/skills-index.md +118 -0
  11. package/.claude/commands/mindforge/systematic-debug.md +60 -0
  12. package/.claude/commands/mindforge/update.md +1 -1
  13. package/.claude/commands/mindforge/wf-accessibility-audit.md +31 -0
  14. package/.claude/commands/mindforge/wf-ai-model-eval.md +31 -0
  15. package/.claude/commands/mindforge/wf-api-migration.md +31 -0
  16. package/.claude/commands/mindforge/wf-architecture-modernization.md +32 -0
  17. package/.claude/commands/mindforge/wf-catalog.md +62 -0
  18. package/.claude/commands/mindforge/wf-code-audit.md +31 -0
  19. package/.claude/commands/mindforge/wf-code-explainer.md +31 -0
  20. package/.claude/commands/mindforge/wf-competitive-analysis.md +31 -0
  21. package/.claude/commands/mindforge/wf-competitive-teardown.md +31 -0
  22. package/.claude/commands/mindforge/wf-cost-analysis.md +31 -0
  23. package/.claude/commands/mindforge/wf-data-pipeline-validate.md +31 -0
  24. package/.claude/commands/mindforge/wf-database-migration.md +31 -0
  25. package/.claude/commands/mindforge/wf-debug-detective.md +32 -0
  26. package/.claude/commands/mindforge/wf-design-system-audit.md +31 -0
  27. package/.claude/commands/mindforge/wf-documentation-gen.md +31 -0
  28. package/.claude/commands/mindforge/wf-feature-planner.md +31 -0
  29. package/.claude/commands/mindforge/wf-incident-response.md +31 -0
  30. package/.claude/commands/mindforge/wf-multi-repo-sync.md +31 -0
  31. package/.claude/commands/mindforge/wf-mutation-testing.md +31 -0
  32. package/.claude/commands/mindforge/wf-onboard-codebase.md +31 -0
  33. package/.claude/commands/mindforge/wf-orchestrate-review.md +35 -0
  34. package/.claude/commands/mindforge/wf-perf-optimize.md +31 -0
  35. package/.claude/commands/mindforge/wf-pr-review.md +31 -0
  36. package/.claude/commands/mindforge/wf-refactor-plan.md +31 -0
  37. package/.claude/commands/mindforge/wf-release-prep.md +31 -0
  38. package/.claude/commands/mindforge/wf-security-threat-model.md +31 -0
  39. package/.claude/commands/mindforge/wf-tdd-sprint.md +31 -0
  40. package/.claude/commands/mindforge/wf-tech-evaluation.md +31 -0
  41. package/.claude/commands/mindforge/wf-ux-heuristic-audit.md +31 -0
  42. package/.claude/commands/mindforge/wf-verification-loop.md +45 -0
  43. package/.claude/commands/mindforge/wf-workflow-optimizer.md +51 -0
  44. package/.claude/commands/mindforge/wf-writer-reviewer.md +30 -0
  45. package/.mindforge/MINDFORGE-SCHEMA.json +126 -13
  46. package/.mindforge/config.json +3 -3
  47. package/.mindforge/engine/cost-tracking/router.md +1 -1
  48. package/.mindforge/engine/cost-tracking/token-ledger.md +21 -24
  49. package/.mindforge/memory/sync-manifest.json +1 -1
  50. package/.mindforge/metrics/METRICS-SCHEMA.md +13 -4
  51. package/.mindforge/personas/cost-optimizer.md +2 -2
  52. package/.mindforge/personas/doc-auditor.md +1 -1
  53. package/.mindforge/personas/monorepo-architect.md +2 -1
  54. package/.mindforge/personas/multi-model-bridge.md +1 -1
  55. package/.mindforge/personas/release-manager.md +5 -3
  56. package/.mindforge/skills/cost-aware-routing/SKILL.md +3 -3
  57. package/.mindforge/skills/documentation/SKILL.md +4 -1
  58. package/.mindforge/skills/multi-llm-consult/SKILL.md +2 -2
  59. package/CHANGELOG.md +216 -1821
  60. package/MINDFORGE.md +4 -4
  61. package/README.md +103 -509
  62. package/RELEASENOTES.md +75 -0
  63. package/SECURITY.md +1 -1
  64. package/bin/autonomous/audit-writer.js +48 -33
  65. package/bin/dashboard/api-router.js +11 -10
  66. package/bin/dashboard/error-response.js +44 -0
  67. package/bin/dashboard/frontend/index.html +20 -3
  68. package/bin/dashboard/metrics-aggregator.js +29 -8
  69. package/bin/dashboard/revops-api.js +12 -2
  70. package/bin/dashboard/server.js +85 -5
  71. package/bin/dashboard/temporal-api.js +11 -5
  72. package/bin/engine/remediation-engine.js +12 -1
  73. package/bin/engine/temporal-hub.js +41 -9
  74. package/bin/eval/eval-harness.js +212 -1
  75. package/bin/eval/golden-set-retrieval.json +9 -0
  76. package/bin/governance/policy-engine.js +8 -0
  77. package/bin/hindsight-injector.js +8 -2
  78. package/bin/hooks/instinct-capture-hook.js +7 -1
  79. package/bin/install.js +1 -1
  80. package/bin/learning/instinct-cli.js +7 -24
  81. package/bin/memory/knowledge-capture.js +23 -3
  82. package/bin/memory/knowledge-graph.js +70 -31
  83. package/bin/memory/vector-hub.js +304 -31
  84. package/bin/mindforge-cli.js +43 -11
  85. package/bin/models/cost-tracker.js +22 -23
  86. package/bin/models/model-router.js +28 -7
  87. package/bin/models/usage-record.js +71 -0
  88. package/bin/updater/changelog-fetcher.js +95 -5
  89. package/bin/utils/file-lock.js +106 -0
  90. package/bin/utils/mindforge-params.js +124 -0
  91. package/bin/utils/readiness-gate.js +3 -3
  92. package/bin/validate-config.js +34 -16
  93. package/changelogs/README.md +109 -0
  94. package/changelogs/index.json +103 -0
  95. package/changelogs/v0.1.0.md +21 -0
  96. package/changelogs/v0.2.0.md +15 -0
  97. package/changelogs/v0.3.0.md +28 -0
  98. package/changelogs/v0.4.0.md +29 -0
  99. package/changelogs/v0.5.0.md +34 -0
  100. package/changelogs/v0.6.0.md +34 -0
  101. package/changelogs/v1.0.0.md +60 -0
  102. package/changelogs/v1.0.1.md +15 -0
  103. package/changelogs/v1.0.2.md +10 -0
  104. package/changelogs/v1.0.3.md +10 -0
  105. package/changelogs/v1.0.4.md +10 -0
  106. package/changelogs/v1.0.5.md +10 -0
  107. package/changelogs/v10.0.0.md +71 -0
  108. package/changelogs/v10.0.2.md +15 -0
  109. package/changelogs/v10.0.3.md +21 -0
  110. package/changelogs/v10.0.4.md +16 -0
  111. package/changelogs/v10.0.5.md +16 -0
  112. package/changelogs/v10.0.6.md +15 -0
  113. package/changelogs/v10.0.7.md +15 -0
  114. package/changelogs/v10.0.8.md +15 -0
  115. package/changelogs/v10.0.9.md +15 -0
  116. package/changelogs/v10.1.0.md +16 -0
  117. package/changelogs/v10.1.1.md +15 -0
  118. package/changelogs/v10.2.0.md +14 -0
  119. package/changelogs/v10.3.0.md +13 -0
  120. package/changelogs/v10.4.0.md +13 -0
  121. package/changelogs/v10.5.0.md +13 -0
  122. package/changelogs/v10.6.0.md +13 -0
  123. package/changelogs/v10.7.0.md +15 -0
  124. package/changelogs/v11.0.0.md +66 -0
  125. package/changelogs/v11.0.1.md +10 -0
  126. package/changelogs/v11.1.0.md +56 -0
  127. package/changelogs/v11.2.0.md +41 -0
  128. package/changelogs/v11.2.1.md +38 -0
  129. package/changelogs/v11.3.0.md +45 -0
  130. package/changelogs/v11.3.1.md +39 -0
  131. package/changelogs/v11.4.0.md +38 -0
  132. package/changelogs/v11.5.0.md +77 -0
  133. package/changelogs/v11.5.1.md +47 -0
  134. package/changelogs/v11.6.0.md +45 -0
  135. package/changelogs/v11.7.0.md +30 -0
  136. package/changelogs/v11.7.1.md +8 -0
  137. package/changelogs/v11.8.0.md +19 -0
  138. package/changelogs/v11.8.1.md +28 -0
  139. package/changelogs/v11.8.2.md +22 -0
  140. package/changelogs/v11.8.3.md +22 -0
  141. package/changelogs/v11.9.0.md +17 -0
  142. package/changelogs/v11.9.1.md +8 -0
  143. package/changelogs/v11.9.2.md +209 -0
  144. package/changelogs/v2.0.0-alpha.1.md +42 -0
  145. package/changelogs/v2.0.0-alpha.10.md +13 -0
  146. package/changelogs/v2.0.0-alpha.11.md +14 -0
  147. package/changelogs/v2.0.0-alpha.12.md +16 -0
  148. package/changelogs/v2.0.0-alpha.2.md +14 -0
  149. package/changelogs/v2.0.0-alpha.3.md +17 -0
  150. package/changelogs/v2.0.0-alpha.4.md +17 -0
  151. package/changelogs/v2.0.0-alpha.7.md +18 -0
  152. package/changelogs/v2.0.0-alpha.8.md +11 -0
  153. package/changelogs/v2.0.0-alpha.9.md +12 -0
  154. package/changelogs/v2.0.0.md +35 -0
  155. package/changelogs/v2.1.0.md +22 -0
  156. package/changelogs/v2.1.1.md +25 -0
  157. package/changelogs/v2.1.2.md +21 -0
  158. package/changelogs/v2.3.2.md +19 -0
  159. package/changelogs/v2.3.3.md +16 -0
  160. package/changelogs/v2.3.4.md +16 -0
  161. package/changelogs/v2.3.5.md +21 -0
  162. package/changelogs/v2.4.0.md +29 -0
  163. package/changelogs/v2.5.0.md +26 -0
  164. package/changelogs/v2.6.0.md +26 -0
  165. package/changelogs/v3.0.0.md +17 -0
  166. package/changelogs/v4.0.0.md +19 -0
  167. package/changelogs/v4.1.0.md +19 -0
  168. package/changelogs/v4.3.0.md +31 -0
  169. package/changelogs/v5.0.0-alpha.1.md +35 -0
  170. package/changelogs/v5.0.0-alpha.2.md +22 -0
  171. package/changelogs/v5.1.0.md +42 -0
  172. package/changelogs/v5.2.0.md +18 -0
  173. package/changelogs/v5.3.0.md +14 -0
  174. package/changelogs/v5.4.0.md +28 -0
  175. package/changelogs/v5.5.0.md +11 -0
  176. package/changelogs/v5.6.0.md +11 -0
  177. package/changelogs/v5.7.0.md +12 -0
  178. package/changelogs/v5.8.0.md +12 -0
  179. package/changelogs/v5.9.0.md +11 -0
  180. package/changelogs/v6.0.0-alpha.md +45 -0
  181. package/changelogs/v6.1.0-alpha.md +29 -0
  182. package/changelogs/v6.2.0-alpha.md +30 -0
  183. package/changelogs/v6.2.0.md +21 -0
  184. package/changelogs/v6.3.0.md +14 -0
  185. package/changelogs/v6.4.0.md +13 -0
  186. package/changelogs/v6.5.0.md +13 -0
  187. package/changelogs/v6.6.0.md +12 -0
  188. package/changelogs/v6.7.0.md +12 -0
  189. package/changelogs/v7.0.0.md +13 -0
  190. package/changelogs/v8.0.0.md +14 -0
  191. package/changelogs/v8.1.0.md +13 -0
  192. package/changelogs/v8.2.0.md +12 -0
  193. package/changelogs/v8.2.1.md +11 -0
  194. package/changelogs/v9.0.0.md +20 -0
  195. package/docs/References/config-reference.md +73 -14
  196. package/docs/commands-reference.md +12 -6
  197. package/docs/faq.md +3 -3
  198. package/docs/getting-started.md +28 -3
  199. package/docs/sdk-reference.md +1 -1
  200. package/docs/user-guide.md +2 -2
  201. package/package.json +5 -2
package/README.md CHANGED
@@ -4,213 +4,92 @@
4
4
 
5
5
  ---
6
6
 
7
- ## Latest: v11.9.0
7
+ ## Latest release
8
8
 
9
- - **v11.9.0** (2026-07-01) — Autopsy Fixes Stable 258/258 IQ200 checks passing; `--version` flag, EISClient named import, rbac shim, skill-loader stub, null-phase guard, 12 duplicate triggers resolved, SDK 0 typecheck errors, path-containment guard on spawn
10
- - **v11.8.2** (2026-07-01) — Clean Stable — ESLint 0 errors, health command output fixed, ZTAI lazy instantiation, pr-review CLI entry point, worktree timeout fix
11
- - **v11.8.1** (2026-07-01) First Stable hono+picomatch CVEs patched (0 vulnerabilities), SRE simulator gated, spawn stub disclosure, EIS/browser/ZTAI guards added
12
- - **v11.8.0 — "Workflow Forge II".** Expands the Dynamic Workflow Library from 12 to 32 workflows across 5 tiers — adds a new **Beast tier** for compound 5-phase adversarial workflows (security-hardening, accessibility-audit, security-threat-model), plus 18 more across Dev/Ops/Intelligence/Research. 21 new `/mindforge:wf-*` commands. Total: 219 commands.
13
- - **v11.7.0 — "Workflow Forge".** Ships the first Dynamic Workflow Library — 12 pre-built multi-agent workflow scripts that run via Claude Code's `Workflow` tool with true parallel agent execution. Four tiers: Research (deep-research, competitive-analysis, tech-evaluation), Dev (code-audit, feature-planner, pr-review, tdd-sprint, refactor-plan), Ops (incident-response, release-prep), Intelligence (onboard-codebase, perf-optimize). 13 new `/mindforge:wf-*` commands. Total: 198 commands.
14
- - **v11.6.0 — "Skill Forge".** Adds 80 community-sourced skills across 8 domains (software-development, github, devops, research, security, creative, data-science, note-taking) — 30 promoted to engine tier for automatic trigger-matching, 50 in the extended tier for explicit activation. Three new slash commands: `/mindforge:systematic-debug`, `/mindforge:skill-tdd`, `/mindforge:skills-index`. Total: 153 skills, 232 engine-tier entries, 185 commands.
15
- - **v11.5.1 — Standalone MCP server.** The MindForge MCP server now ships as its own npm package, `mindforge-mcp-server@11.5.1`, listed on the official MCP Registry as `io.github.sairam0424/mindforge`. Add it to Claude Code with one command (see [Use the MCP server](#-use-the-mcp-server-standalone)); it exposes 7 tools over stdio (6 read-only + 1 guarded write).
16
- - **v11.3.0 — "Legion".** Imports 154 specialized Claude-Code-native subagents across 10 categories into `.claude/agents/`, fully rebranded and collision-safe. Additive and backward-compatible.
9
+ **v11.9.2** (2026-08-16) — Correctness: the config gate can now fail, the audit chain no longer
10
+ forks under concurrent writers, trace retrieval works, and the cost ledger has one record shape.
11
+ **Contains a breaking change to the dashboard HTTP surface** (loopback-only) see the BREAKING
12
+ section in [CHANGELOG.md](./CHANGELOG.md), or [RELEASENOTES.md](./RELEASENOTES.md) for
13
+ human-readable notes.
17
14
 
18
- See [CHANGELOG.md](./CHANGELOG.md) for full release history.
19
-
20
- <details>
21
- <summary>v11.0.0 — Sovereign Stability highlights</summary>
22
-
23
- ## v11.0.0 — Sovereign Stability
24
-
25
- MindForge v11.0.0 "Sovereign Stability" is a production-hardening release focused on reliability, performance, and real-world deployment readiness. Key highlights:
26
-
27
- - **Memory-safe operations** — LRU-bounded caches, atomic writes, log rotation, and snapshot garbage collection eliminate resource leaks in long-running sessions.
28
- - **True wave parallelism** — Semaphore-based concurrent execution with configurable max concurrency replaces sequential task dispatch.
29
- - **Streaming SDK** — WebSocket event streaming, `streamExecution()` with AsyncIterable, and `batchExecute()` for high-throughput integrations.
30
- - **Hardened security** — Ephemeral enclave keys, session-scoped agent isolation, time-limited RBAC elevation, dashboard rate limiting, and structured ZK proof returns.
31
- - **Production observability** — `/api/v1/system` health endpoint, P95 latency tracking, heap health monitoring, and real EIS client with retry logic.
32
- - **Graduated intelligence** — Adaptive tier escalation (+1/+2/MAX) with cost-awareness, 3-tier stuck detection, and adaptive context windows.
33
-
34
- This release ships 211 personas, 153 skills, 154 specialized subagents, 198 commands, 18 pillars, and 49 swarm templates across 12 engineering domains.
35
-
36
- </details>
15
+ ---
37
16
 
17
+ ## What is actually enforced
18
+
19
+ Read this before the install instructions. MindForge ships a large corpus of agent
20
+ instructions — commands, skills, personas, protocols — and those are advisory: they work by
21
+ being in the model's context, and a model can decline them. The parts that would *block* an
22
+ action are hooks, and **no install channel currently registers them.**
23
+
24
+ | Capability | Plugin channel | `npx` channel |
25
+ |---|---|---|
26
+ | Slash commands | Yes | Yes |
27
+ | Skills / personas / protocol docs | Yes | Yes |
28
+ | Subagents | Yes | Yes |
29
+ | Audit hash-chain (`bin/verify-audit.js`) | Yes | Yes |
30
+ | **Hooks enforced (can block a tool call)** | **No** | **No** |
31
+
32
+ Why, specifically:
33
+
34
+ - **No hook configuration ships, and nothing generates one.** `package.json` `files[]` has 47
35
+ entries and none contains `settings`, so neither `.claude/settings.json` nor
36
+ `.agent/settings.json` is published. All references to those paths in `bin/` are reads or
37
+ metadata strings — there is no code that writes or merges one. `bin/harness-audit.js:335`
38
+ even offers "wire trust-gate + block-no-verify into both …" as a *fix suggestion*, auditing a
39
+ wiring nothing creates.
40
+ - **The plugin channel's hooks additionally crash when fired.**
41
+ `plugins/mindforge/scripts/run-with-flags.js:24` requires `./lib/hook-flags`, and
42
+ `plugins/mindforge/scripts/lib/` does not exist in the published plugin. Running the
43
+ dispatcher gives `Error: Cannot find module './lib/hook-flags'` and exit 1. The module it
44
+ needs does exist at `.agent/hooks/lib/hook-flags.js`; it was never copied in.
45
+
46
+ So treat MindForge as **governance-by-convention plus a tamper-evident audit log**, not as a
47
+ policy enforcement point. Installing it also expands your repository's trust boundary by a large
48
+ volume of agent instructions — review what you install. Making hook registration real per
49
+ harness is the headline goal of v12; the audit chain is genuinely verifiable today
50
+ (`node bin/verify-audit.js`).
38
51
 
39
- ## Installation & Setup
52
+ ---
40
53
 
41
- ### 🔌 Claude Code Plugin (fastest)
54
+ ## Install
42
55
 
43
- Install MindForge's commands, subagents, and skills directly from the marketplace
44
- no project files written:
56
+ Claude Code plugin marketplace (no project files written). **Note:** the plugin's hooks do not
57
+ fire see *What is actually enforced* above. Slash commands, skills and subagents do work.
45
58
 
46
59
  ```bash
47
60
  /plugin marketplace add sairam0424/MindForge
48
61
  /plugin install mindforge@mindforge
49
62
  ```
50
63
 
51
- Prefer just a slice (e.g. Python agents)? Install a focused pack like
52
- `mindforge-lang@mindforge` instead. See [docs/plugin-installation.md](docs/plugin-installation.md)
53
- for all 11 plugins, token-budget guidance, and team setup.
54
-
55
- ### 🚀 Quick Start (npx — full framework engine)
56
-
57
- **Prerequisites:** Node.js >= 18.0.0
58
-
59
- The npx installer also writes the complete `.mindforge/` engine (governance, memory,
60
- planning) into your project:
61
-
62
- ```bash
63
- # For Claude Code
64
- npx mindforge-cc@latest --claude --global
65
-
66
- # For Antigravity
67
- npx mindforge-cc@latest --antigravity --global
68
- ```
69
-
70
- ### 🌍 Global Installation
71
-
72
- Enable system-wide `/mindforge` commands for your primary AI coding runtime:
73
-
74
- ```bash
75
- npm install -g mindforge-cc@latest
76
- ```
77
-
78
- ### 📂 Local Project Setup
79
-
80
- Initialize MindForge in an existing repository with specialized agent identities:
64
+ Or the full framework engine via `npx` (writes `.mindforge/` governance, memory, and planning into your project):
81
65
 
82
66
  ```bash
83
- # For Claude Code
84
67
  npx mindforge-cc@latest --claude --local
85
-
86
- # For Antigravity
87
- npx mindforge-cc@latest --antigravity --local
88
- ```
89
-
90
- ### 🔗 Use the MCP server (standalone)
91
-
92
- The MindForge MCP server is published as its own npm package,
93
- **`mindforge-mcp-server`** (`11.9.0`), and is listed on the official
94
- [MCP Registry](https://registry.modelcontextprotocol.io) as
95
- `io.github.sairam0424/mindforge`. Wire it into Claude Code with one command:
96
-
97
- ```bash
98
- claude mcp add mindforge -- npx -y mindforge-mcp-server
99
68
  ```
100
69
 
101
- It exposes **7 tools over stdio** 6 read-only plus 1 guarded write:
102
-
103
- | Tool | Purpose |
104
- | :--- | :--- |
105
- | `mindforge_health` | Framework health check |
106
- | `mindforge_status` | Project status snapshot |
107
- | `mindforge_memory_query` | Query the knowledge graph |
108
- | `mindforge_memory_stats` | Knowledge graph statistics |
109
- | `mindforge_memory_find_related` | Find related knowledge entries |
110
- | `mindforge_audit_log` | Read the append-only audit trail |
111
- | `mindforge_memory_remember` | Persist a memory (guarded write) |
112
-
113
- ---
114
-
115
- ## Quick Verification
70
+ All install channels (global, local, Antigravity, Cursor, Copilot, Gemini CLI, MCP server, combined runtimes, `--minimal`): see [docs/getting-started.md](docs/getting-started.md).
116
71
 
117
- After install, open Claude Code and type:
118
- - `/mindforge:status` verify installation and show project health
119
- - `/mindforge:next` auto-discover your first task
120
- - `node bin/mindforge-cli.js --version` prints `11.9.0`
72
+ **Upgrading from 11.9.x?** The installer does not overwrite an existing
73
+ `.mindforge/MINDFORGE-SCHEMA.json`, so 11.9.2's armed config validator keeps the older
74
+ permissive schema on a plain upgrade. Run with `--force` if you want the stricter gate. The
75
+ daily cost cap declared as `[COST_HARD_LIMIT_USD]` in `MINDFORGE.md` is **not enforced** in
76
+ 11.9.2 — see the CHANGELOG.
121
77
 
122
78
  ---
123
79
 
124
- - **Production Hardening (v11.0.0)** — LRU caches, atomic JSON writes, log rotation, HANDOFF validation, and temporal snapshot GC for crash-safe long-running sessions.
125
- - **True Wave Parallelism (v11.0.0)** — Semaphore-based concurrent wave execution with configurable max concurrency replaces sequential dispatch.
126
- - **Streaming SDK (v11.0.0)** — WebSocket event streaming, `streamExecution()` AsyncIterable, `batchExecute()`, model streaming across Anthropic/OpenAI/Gemini providers.
127
- - **Graduated Intelligence (v11.0.0)** — Adaptive tier escalation (+1/+2/MAX) with cost-awareness, 3-tier stuck detection, and adaptive context windows (10/20/30).
128
- - **Security Hardening (v11.0.0)** — Ephemeral enclave keys, session-scoped ZTAI, time-limited RBAC elevation, dashboard rate limiting (100 req/min/IP), token expiration.
129
- - **Observability (v11.0.0)** — `/api/v1/system` health endpoint, P95 latency ring buffer, heap health monitoring, real EIS client with exponential backoff.
130
- - **Grounded Wave Execution (v9.0.0)** — AutoRunner reads HANDOFF.json wave groups, dispatches tasks with audit tracing, persists progress, and resumes on restart (Pillar XXIV).
131
- - **Model Topology Modernization (v9.0.0)** — All model references updated to the Claude 4.x family: claude-opus-4-7, claude-sonnet-4-6, claude-haiku-4-5 (Pillar XXV).
132
- - **Unified Memory Architecture (v9.0.0)** — Knowledge and graph edges consolidated into SQLite (celestial.db) with FTS5 search. Four JSONL stores replaced by one queryable store (Pillar XXVI).
133
- - **Schema Migration Engine (v9.0.0)** — `_migrations` table with versioned migration tracking and transaction-wrapped bulk imports (Pillar XXVII).
134
- - **Integration Test Chain (v9.0.0)** — 27-assertion end-to-end test suite validating the full execution pipeline (Pillar XXVIII).
135
- - **Sovereign Identity Synthesis (v8.1.1)** — Autonomous `SOUL.md` generation derived from reasoning traces and interaction sentiment (Pillar XIX).
136
- - **Autonomous SRE Layer (v8.2.0)** — Self-healing production reliability engine with reactive sentinel observability and adversarial remediation auditing (Pillars XX-XXIII).
137
- - **Unified Persistence Layer (v8.0)** — Centralized SQLite/FTS5 engine for sub-millisecond reasoning audits and semantic reasoning (Pillar XV).
138
- - **Federated Mesh Synthesis (v8.0)** — Signed knowledge handoffs via MindForge Bundles (`.mfb`) and federated intelligence synchronization (Pillar XVI).
139
- - **Autonomous Skill Evolution (v8.0)** — Self-generating persistent skills from reasoning traces with logic-drift mining (Pillar XVII).
140
- - **Orbital Governance (v8.0)** — Hardware-bound (HSM/Biometric) attestation for high-blast-radius security gates (Pillar XVIII).
141
- - **Post-Quantum Agentic Security (v7.0)** — Lattice-based (Dilithium-5) signatures and ZK-Proof bypasses (Pillar XI).
142
- - **Proactive Semantic Homing (v7.0)** — Autonomous "Intent Hunting" and peer-healing mesh behavior (Pillar XII).
143
- - **Autonomous Resource Harvesting (v7.0)** — Real-time token arbitrage and dynamic task routing (Pillar IX).
144
- - **Neural Drift Remediation (v7.0)** — Semantic density heuristics and automated reasoning recovery (Pillar X).
145
- - **Interactive Temporal Steering (v5.10)** — Full history scrubbing, hindsight state repair, and real-time temporal slider navigation (Pillar VII).
146
- - **AgRevOps Hub (v6.0)** — Dynamic ROI tracking ($100/hr mapping), Milestone Velocity forecasting, and Governance Debt monitoring (Pillar VIII).
147
- - **Sovereign Reason Enclave (v5.8)** — TEE-simulated reasoning isolation with Zero-Knowledge (ZK) Audit Trails (Pillar VI).
148
- - **Multi-Cloud Arbitrage (v5.7)** — Dynamic routing across Vertex AI, Bedrock, and Azure with intelligence-first task affinity (Pillar V).
149
- - **Sentinel Execution (v5.6)** — JIT Binary Runtime Attestation and Zero-Trust Skill Enforcement (Pillar IV).
150
- - **Predictive Agentic Reliability (v5.5)** — Advanced loop detection and self-healing resonance (Pillar III).
151
- - **Dynamic Blast Radius (v5.3)** — Real-time impact analysis and circuit-breaker safety in the federated sync (Pillar II).
152
- - **Semantic Vector Consensus (v5.2)** — FIM v2 with cosine-similarity conflict resolution (Pillar I).
153
- - **Human-Agent Handover (v5.0)** — Nexus State Bundles and mid-wave steering injection.
154
- - **Autonomous FinOps (v4.3)** — Dynamic **C2C** (Confidence-to-Cost) routing.
155
- - **Proactive Equilibrium (v4.3)** — Real-time **Wave Divergence** monitoring and autonomous state recovery.
156
- - **MindForge Nexus (v4.1)** — High-fidelity **ART** (Agentic Reasoning Tracing).
157
- - **Zero-Trust Identity (v4.2)** — DID-signed non-repudiable audit logs with HSM/Enclave support.
158
- - **Global Intelligence Mesh (v4.2)** — Cross-repo knowledge sharing and Ghost Pattern Detection.
159
- - **Context Sharding (v3)** — relevance-dense memory management (40% token savings)
160
- - **Adversarial Synthesis (v3)** — zero-drift logic through red/blue model debate
161
- - **RAG 2.0 (v3)** — automatic semantic shadowing for background pattern retrieval
162
- - **Role personas** — specialised agent modes for each task type
163
- - **Specialized Identities** — custom `/agents/` workspace with enriched `IDENTITY.md` protocols
164
- - **Skills** — just-in-time domain knowledge loaded on demand
165
- - **Wave execution** — parallelism with dependency safety
166
- - **Autonomous Engine** — walk-away execution with steerability
167
- - **Real-time Dashboard** — web-based observability with Temporal Slider
168
- - **Browser Runtime** — headful/headless visual QA and sessions
169
-
170
- - **Multi-Model Intelligence** — dynamic routing, adversarial reviews, and deep research (v2)
171
- - **Persistent Knowledge Graph** — long-term memory across all engineering sessions (v2)
172
- - **Self-Building Skills** — automatically capture knowledge from any source into reusable skills (v2)
173
- - **Quality gates** — compliance and security are non-bypassable
174
- - **Audit trail** — append-only history of every action
175
-
176
- ---
177
-
178
- ## 🛠️ Configuration & Runtimes
179
-
180
- MindForge adapts to your existing engineering environment via runtime flags:
181
-
182
- | Runtime | Global Command | Local Setup |
183
- | :--- | :--- | :--- |
184
- | **Claude Code** | `mindforge-cc --claude --global` | `mindforge-cc --claude --local` |
185
- | **Antigravity** | `mindforge-cc --antigravity --global` | `mindforge-cc --antigravity --local` |
186
- | **Cursor** | `mindforge-cc --cursor --global` | `mindforge-cc --cursor --local` |
187
- | **GitHub Copilot** | `mindforge-cc --copilot --global` | `mindforge-cc --copilot --local` |
188
- | **Gemini CLI** | `mindforge-cc --gemini --global` | `mindforge-cc --gemini --local` |
189
-
190
- ### Advanced Setup Options
191
- - **Combined Runtimes**: `mindforge-cc --runtime claude,cursor --local`
192
- - **With Utilities**: `mindforge-cc --local --with-utils` (Installs specialized bin scripts)
193
- - **Minimalist**: `mindforge-cc --local --minimal` (Only basic protocols, no persona library)
194
-
195
- ---
196
-
197
-
198
80
  ## Verify
199
81
 
200
- Open Claude Code or Antigravity in your project directory and run:
201
-
202
82
  ```bash
203
- /mindforge:health
83
+ /mindforge:health # framework + installation health check
84
+ /mindforge:health --repair # fix anything the health check flags
85
+ /mindforge:status # project status snapshot
86
+ /mindforge:next # auto-discover your first task
204
87
  ```
205
88
 
206
- If issues are found, run:
207
- ```bash
208
- /mindforge:health --repair
209
- ```
89
+ Full verification walkthrough: [docs/quick-verify.md](docs/quick-verify.md).
210
90
 
211
91
  ---
212
92
 
213
-
214
93
  ## Quick start (new project)
215
94
 
216
95
  ```bash
@@ -221,7 +100,6 @@ If issues are found, run:
221
100
  /mindforge:ship 1
222
101
  ```
223
102
 
224
-
225
103
  ## Quick start (existing codebase)
226
104
 
227
105
  ```bash
@@ -232,111 +110,56 @@ If issues are found, run:
232
110
 
233
111
  ---
234
112
 
113
+ ## Documentation
235
114
 
236
- ## Core workflow
237
-
238
- ```bash
239
- /mindforge:init-project
240
- Requirements interview
241
- Creates PROJECT.md, REQUIREMENTS.md, STATE.md
242
-
243
- /mindforge:do <text>
244
- Smart natural language dispatcher (v2)
245
-
246
- /mindforge:note <text>
247
- → Zero-friction idea capture and todo promotion (v2)
248
-
249
- /mindforge:ui-phase 1
250
- Create UI design contract (UI-SPEC.md) (v2)
251
-
252
- /mindforge:plan-phase 1 [--ads]
253
- Discuss scope and decisions
254
- Research domain (parallel)
255
- Create atomic XML task plans
256
- (Optional) Run Adversarial Decision Synthesis (ADS) loop
257
-
258
- /mindforge:execute-phase 1
259
- → Wave-based parallel execution
260
- → One commit per task
261
- → Automated verification
262
-
263
- /mindforge:ui-review 1
264
- → Retroactive 6-pillar visual audit (v2)
115
+ - **User Guide:** [docs/user-guide.md](docs/user-guide.md)
116
+ - **Getting started:** [docs/getting-started.md](docs/getting-started.md)
117
+ - **Quick verify:** [docs/quick-verify.md](docs/quick-verify.md)
118
+ - **Troubleshooting:** [docs/troubleshooting.md](docs/troubleshooting.md)
119
+ - **FAQ:** [docs/faq.md](docs/faq.md)
120
+ - **Full tutorial:** [docs/tutorial.md](docs/tutorial.md)
121
+ - **Commands reference (full):** [docs/commands-reference.md](docs/commands-reference.md)
122
+ - **Commands (quick):** [docs/References/commands.md](docs/References/commands.md)
123
+ - **Config reference:** [docs/References/config-reference.md](docs/References/config-reference.md)
124
+ - **SDK:** [docs/References/sdk-api.md](docs/References/sdk-api.md)
125
+ - **Skills:** [docs/References/skills-api.md](docs/References/skills-api.md)
126
+ - **Audit events:** [docs/References/audit-events.md](docs/References/audit-events.md)
127
+ - **Upgrade guide:** [docs/upgrade.md](docs/upgrade.md)
128
+ - **Workflow atlas:** [docs/workflow-atlas.md](docs/workflow-atlas.md)
129
+ - **Security:** [docs/security/SECURITY.md](docs/security/SECURITY.md) (MindForge never stores credentials in files)
130
+ - **Threat model:** [docs/security/threat-model.md](docs/security/threat-model.md)
131
+ - **Architecture:** [docs/architecture/README.md](docs/architecture/README.md)
132
+ - **Contributing:** [docs/contributing/CONTRIBUTING.md](docs/contributing/CONTRIBUTING.md)
133
+ - **Release notes:** [RELEASENOTES.md](RELEASENOTES.md)
134
+ - **CI quickstart:** [docs/ci-quickstart.md](docs/ci-quickstart.md)
135
+ - **Requirements:** [docs/requirements.md](docs/requirements.md)
136
+ - **Release checklist guide:** [docs/release-checklist-guide.md](docs/release-checklist-guide.md)
137
+ - **USPs and features:** [docs/usp-features.md](docs/usp-features.md)
265
138
 
266
- /mindforge:validate-phase 1
267
- → Requirement coverage and test gap audit (v2)
139
+ ---
268
140
 
269
- /mindforge:session-report
270
- → Automated post-session stakeholder summary (v2)
141
+ ## Core workflow
271
142
 
272
- /mindforge:add-backlog <desc>
273
- Park ideas in 999.x "parking lot" (v2)
143
+ | Command | What it does |
144
+ | :--- | :--- |
145
+ | `/mindforge:init-project` | Requirements interview → creates `PROJECT.md`, `REQUIREMENTS.md`, `STATE.md` |
146
+ | `/mindforge:plan-phase 1 [--ads]` | Discuss scope, research the domain in parallel, create atomic XML task plans |
147
+ | `/mindforge:execute-phase 1` | Wave-based parallel execution, one commit per task, automated verification |
148
+ | `/mindforge:verify-phase 1` | Human acceptance testing, debug agent on failures, UAT sign-off |
149
+ | `/mindforge:ship 1` | Changelog generation, final quality gates, PR creation |
150
+ | `/mindforge:auto --phase 1` | Walk-away autonomous execution with stuck detection and steering |
274
151
 
275
- /mindforge:review-backlog
276
- → Review and promote backlog items (v2)
152
+ Full command list: [docs/commands-reference.md](docs/commands-reference.md).
277
153
 
278
- /mindforge:plant-seed <idea>
279
- → Capture speculative ideas with triggers (v2)
154
+ ---
280
155
 
281
- /mindforge:workstreams
282
- → Parallel feature tracks with isolated state (v2)
156
+ ## Dynamic Workflow Library
283
157
 
284
- /mindforge:execute-phase 1
285
- → Wave-based parallel execution
286
- → One commit per task
287
- → Automated verification
158
+ 35 pre-built multi-agent workflow scripts that run via Claude Code's `Workflow` tool. Each fans out concurrent agents, synthesizes results, and returns structured output across 5 tiers (Research, Dev, Ops, Intelligence, Beast).
288
159
 
289
- /mindforge:verify-phase 1
290
- → Human acceptance testing
291
- → Debug agent on failures
292
- → UAT sign-off
160
+ **Discover:** `/mindforge:wf-catalog` or `node bin/mindforge-cli.js workflow list`
293
161
 
294
- /mindforge:ship 1
295
- → Changelog generation
296
- → Final quality gates
297
- → PR creation
298
-
299
- /mindforge:auto --phase 1
300
- → Walk-away autonomous execution (v2)
301
- → Intelligent stuck detection and node repair
302
- → External steering via steering-queue
303
-
304
- /mindforge:qa
305
- → Systematic visual verification of UI changes (v2)
306
- → Automated regression test generation
307
- → Persistent browser sessions and daemon
308
-
309
- /mindforge:cross-review
310
- → Adversarial multi-model code review and synthesis (v2)
311
- → Consensus detection and severity normalization
312
-
313
- /mindforge:research
314
- → Deep research using Gemini 1.5 Pro 1M context (v2)
315
- → Codebase-wide context packaging and SSRF protection
316
-
317
- /mindforge:costs
318
- → Real-time token usage and cost profiling (v2)
319
- → Daily budget tracking across all providers
320
-
321
- /mindforge:remember
322
- → Manual knowledge management and search (v2)
323
- → Persistent knowledge graph retrieval and promotion
324
-
325
- /mindforge:dashboard
326
- → Real-time web observability and governance at localhost:7339 (v2)
327
- → Live audit logs, metrics, activity, and team feed
328
-
329
- /mindforge:learn
330
- → Automatically capture skills from Docs, Sessions, or npm (v2)
331
- → 7-dimension quality scoring and injection protection
332
-
333
- /mindforge:marketplace
334
- → Search, install, and publish community skills (v2)
335
- → Verified installation via npm-based registry
336
-
337
- /mindforge:new-runtime
338
- → Scaffold custom runtime configurations for any AI agent (v2)
339
- ```
162
+ Full, verified 35-workflow table by tier: [docs/workflow-atlas.md](docs/workflow-atlas.md).
340
163
 
341
164
  ---
342
165
 
@@ -345,21 +168,19 @@ If issues are found, run:
345
168
  MindForge supports multiple interaction models to fit your engineering workflow:
346
169
 
347
170
  - **In-IDE Orchestration**: Use `/mindforge:agent <persona>` for real-time delegation.
348
- - **Enterprise Workflows**: Specialized commands like `/mindforge:tdd`, `/mindforge:architecture`, and `/mindforge:planner`.
171
+ - **Enterprise Workflows**: Specialized commands like `/mindforge:wf-tdd-sprint` and `/mindforge:plan-phase`.
349
172
  - **CLI Automation**: Run `node bin/mindforge-cli.js spawn <persona>` for scripted tasks.
350
173
 
351
174
  ---
352
175
 
353
176
  ## Updates and migrations
354
- ```bash
355
- /mindforge:update
356
- /mindforge:update --apply
357
- /mindforge:migrate --from v10.7.0 --to v11.0.0
358
- ```
177
+
178
+ Run `/mindforge:update` (add `--apply` to install) — see [docs/upgrade.md](docs/upgrade.md) for the full upgrade guide and fallback steps.
359
179
 
360
180
  ---
361
181
 
362
182
  ## Plugin system (v1.0.0)
183
+
363
184
  Plugins extend MindForge via the `mindforge-plugin-*` namespace.
364
185
 
365
186
  ```
@@ -371,6 +192,7 @@ Plugins extend MindForge via the `mindforge-plugin-*` namespace.
371
192
  ---
372
193
 
373
194
  ## Token usage profiling
195
+
374
196
  ```
375
197
  /mindforge:tokens --profile
376
198
  ```
@@ -378,234 +200,6 @@ See `.mindforge/production/token-optimiser.md`.
378
200
 
379
201
  ---
380
202
 
381
- ## Documentation
382
- - **User Guide:** `docs/user-guide.md`
383
- - **Troubleshooting:** `docs/troubleshooting.md`
384
- - **CI Quickstart:** `docs/ci-quickstart.md`
385
- - **Requirements:** `docs/requirements.md`
386
- - **Quick verify:** `docs/quick-verify.md`
387
- - **Upgrade guide:** `docs/upgrade.md`
388
- - **FAQ:** `docs/faq.md`
389
- - **Release notes:** `RELEASENOTES.md`
390
- - **Release checklist guide:** `docs/release-checklist-guide.md`
391
- - **USPs and features:** `docs/usp-features.md`
392
- - **Full tutorial:** `docs/tutorial.md`
393
- - **Commands:** `docs/reference/commands.md`
394
- - **Config reference:** `docs/reference/config-reference.md`
395
- - **SDK:** `docs/reference/sdk-api.md`
396
- - **Skills:** `docs/reference/skills-api.md`
397
- - **Audit events:** `docs/reference/audit-events.md`
398
- - **Security:** `docs/security/SECURITY.md`
399
- - **Threat model:** `docs/security/threat-model.md`
400
- - **Architecture:** `docs/architecture/README.md`
401
- - **Contributing:** `docs/contributing/CONTRIBUTING.md`
402
-
403
- ## 🚀 Dynamic Workflow Library
404
-
405
- 32 pre-built multi-agent workflow scripts that run via Claude Code's `Workflow` tool. Each workflow fans out concurrent agents, synthesizes results, and returns structured output.
406
-
407
- **Discover:** `/mindforge:wf-catalog` or `node bin/mindforge-cli.js workflow list`
408
-
409
- | Tier | Command | What it does |
410
- |------|---------|-------------|
411
- | Research | `/mindforge:wf-competitive-analysis` | 5× parallel angles → SWOT → positioning |
412
- | Research | `/mindforge:wf-tech-evaluation` | 5× dimensions → scored matrix → recommendation |
413
- | Research | `/mindforge:wf-ai-model-eval` | Model benchmark → scoring matrix → recommendation |
414
- | Research | `/mindforge:wf-ux-heuristic-audit` | 10 Nielsen heuristics → severity ranking → fix brief |
415
- | Research | `/mindforge:wf-competitive-teardown` | 5 competitor angles → positioning report |
416
- | Dev | `/mindforge:wf-code-audit` | 3× parallel auditors → verified findings → risk report |
417
- | Dev | `/mindforge:wf-feature-planner` | Brief → PRD → architecture → user stories |
418
- | Dev | `/mindforge:wf-pr-review` | 4× parallel reviewers → consensus verdict |
419
- | Dev | `/mindforge:wf-tdd-sprint` | Spec → RED → GREEN → REFACTOR loop |
420
- | Dev | `/mindforge:wf-refactor-plan` | Debt scan → risk-sort → safe sequence → plan |
421
- | Dev | `/mindforge:wf-api-design` | Domain model → OpenAPI spec → SDK skeleton → docs |
422
- | Dev | `/mindforge:wf-db-schema` | Requirements → ERD → migration scripts → seed data |
423
- | Dev | `/mindforge:wf-perf-regression` | Baseline benchmark → change → delta analysis → verdict |
424
- | Dev | `/mindforge:wf-dependency-audit` | License scan + CVE fan-out → risk matrix → upgrade plan |
425
- | Dev | `/mindforge:wf-test-coverage` | Coverage gap scan → test gen → mutation testing → report |
426
- | Ops | `/mindforge:wf-incident-response` | 4× parallel investigation → mitigate → RCA → postmortem |
427
- | Ops | `/mindforge:wf-release-prep` | Tests → changelog → version bump → PR → announcement |
428
- | Ops | `/mindforge:wf-cost-analysis` | Usage fan-out → cost model → optimization levers → plan |
429
- | Ops | `/mindforge:wf-capacity-plan` | Load model → bottleneck forecast → scaling roadmap |
430
- | Ops | `/mindforge:wf-runbook-gen` | Service map → failure modes → remediation steps → runbook |
431
- | Intelligence | `/mindforge:wf-onboard-codebase` | Map → domain → architecture → guided tour |
432
- | Intelligence | `/mindforge:wf-perf-optimize` | Profile → 4× bottleneck hunt → prioritized fix plan |
433
- | Intelligence | `/mindforge:wf-arch-review` | C4 model → 5× quality attributes → risk-ranked findings |
434
- | Intelligence | `/mindforge:wf-decision-analysis` | Options fan-out → criteria weighting → scored recommendation |
435
- | Intelligence | `/mindforge:wf-knowledge-graph` | Concept extraction → relationship map → gap analysis |
436
- | Intelligence | `/mindforge:wf-retrospective` | Data gather → 4× theme clusters → action items → timeline |
437
- | Intelligence | `/mindforge:wf-roadmap-prioritize` | Backlog fan-out → impact/effort scoring → sequenced roadmap |
438
- | Intelligence | `/mindforge:wf-tech-radar` | Adopt/Trial/Assess/Hold fan-out → consensus vote → radar chart |
439
- | Beast | `/mindforge:wf-security-hardening` | 5-angle OWASP parallel scout → STRIDE threat model → remediation roadmap |
440
- | Beast | `/mindforge:wf-accessibility-audit` | WCAG 2.2 parallel audit → 3-vote adversarial verify → remediation spec |
441
- | Beast | `/mindforge:wf-security-threat-model` | Asset inventory → STRIDE×6 → parallel mitigations → CVSS matrix |
442
-
443
- ---
444
-
445
- ## 📜 Framework Evolution & Version History
446
-
447
- <details>
448
- <summary><b>v11.7.0 — Workflow Forge (Dynamic Workflow Library)</b></summary>
449
-
450
- - **12 dynamic workflow scripts** in `.mindforge/dynamic-workflows/scripts/` — each runs via Claude Code's `Workflow` tool with true parallel agent execution, structured JSON schemas, and adversarial verification where appropriate.
451
- - **4 tiers:** Research (deep-research, competitive-analysis, tech-evaluation), Dev (code-audit, feature-planner, pr-review, tdd-sprint, refactor-plan), Ops (incident-response, release-prep), Intelligence (onboard-codebase, perf-optimize).
452
- - **13 /mindforge:wf-* commands** (wf-catalog + 12 workflows).
453
- - **CLI discovery:** `node bin/mindforge-cli.js workflow list|info|run <name>`.
454
- - Architecture follows adversarially-verified best practices: one-workflow-per-domain, predefined (not open-ended) pipelines, fan-out + gated synthesis pattern.
455
- </details>
456
-
457
- <details>
458
- <summary><b>v11.6.0 — Skill Forge (Core + Dev Skill Pack)</b></summary>
459
-
460
- - **80 new skills** across 8 domains: software-development, GitHub workflows, DevOps orchestration, research intelligence, security, creative tooling, data-science, and note-taking.
461
- - **Engine tier (auto-trigger):** 30 skills in `.mindforge/skills/` activated automatically by trigger-phrase matching — systematic debugging, TDD, kanban orchestration, OSINT investigation, web pentesting, concept diagram generation, research paper writing, and more.
462
- - **Extended tier (explicit):** 50 skills in `.agent/skills/` covering GitHub auth, docker management, DevOps watchers, 1Password, debuggers, pixel art, video orchestration, and more.
463
- - **3 new slash commands:** `/mindforge:systematic-debug` (4-phase RCA), `/mindforge:skill-tdd` (RED-GREEN-REFACTOR), `/mindforge:skills-index` (browseable skill catalog).
464
- - All skills cleanly integrated — zero external attribution in any committed file.
465
- </details>
466
-
467
- <details>
468
- <summary><b>v11.0.0 — Sovereign Stability (Production Hardening)</b></summary>
469
-
470
- - **Phase 1: Foundation** — LRU-bounded caches, atomic JSON writes, AUDIT.jsonl log rotation, HANDOFF.json structural validation, temporal snapshot garbage collection.
471
- - **Phase 2: Intelligence** — BM25 scoring with document-length normalization, full remediation strategy implementations, graduated intelligence interlock (+1/+2/MAX), 3-tier stuck detection, adaptive context windows.
472
- - **Phase 3: Security** — Structured ZK proof returns, ephemeral SRE enclave keys, session-scoped ZTAI agent registry, time-limited RBAC elevation, dashboard rate limiting and token expiration, optional GPG approval verification.
473
- - **Phase 4: Observability** — Async temporal I/O, `/api/v1/system` health endpoint, P95 latency ring buffer, heap health monitoring, EIS client de-stub with real fetch and retry logic.
474
- - **Phase 5: SDK/Distributed** — Semaphore-based wave parallelism, WebSocket event streaming with auto-reconnect, `batchExecute()`, model streaming (Anthropic/OpenAI/Gemini), migration script from v10.7.0.
475
- </details>
476
-
477
- <details>
478
- <summary><b>v10.x — The 200-Skills Expansion (Council → Platform Sovereign)</b></summary>
479
-
480
- - **Council Awakens (v10.0.3)**: Council decision framework, Instinct Engine, Cost-Aware Routing, 6-phase Verification Loop, Multi-LLM Consult.
481
- - **Skills Expansion (v10.0.4–v10.7.0)**: From 20 to 200+ core skills across 12 domains — AI/ML, data engineering, platform engineering, mobile, leadership, industry verticals, and more.
482
- - **400+ Personas**: Comprehensive specialist coverage with domain-expert identity protocols.
483
- - **49 Swarm Templates**: Task-aware parallel specialist clusters covering every engineering discipline.
484
- </details>
485
-
486
- <details>
487
- <summary><b>v9.x — Grounded Execution & SQLite Persistence</b></summary>
488
-
489
- - **Grounded Wave Execution (Pillar XXIV)**: AutoRunner reads HANDOFF.json wave groups with audit tracing and restart persistence.
490
- - **Model Topology Modernization (Pillar XXV)**: Claude 4.x family (opus-4-7, sonnet-4-6, haiku-4-5).
491
- - **Unified Memory Architecture (Pillar XXVI)**: SQLite (celestial.db) with FTS5 search replacing JSONL stores.
492
- - **Schema Migration Engine (Pillar XXVII)**: Versioned migration tracking with transaction-wrapped imports.
493
- - **Integration Test Chain (Pillar XXVIII)**: 27-assertion end-to-end pipeline validation.
494
- </details>
495
-
496
- <details>
497
- <summary><b>v8.1.x — Sovereign Identity (Pillar XIX)</b></summary>
498
-
499
- - **Pillar XIX: Sovereign Identity Synthesis**: Autonomous creation and evolution of `SOUL.md` from execution traces.
500
- - **Soul Mirroring**: Agent personality and decision-heuristics that self-adapt based on persistent user interaction sentiment.
501
- - **Identity Enforcement**: Mandatory alignment of subagents with the instance's unique Sovereign Identity.
502
- </details>
503
-
504
- <details>
505
- <summary><b>v8.0.x — Celestial Orchestration (SQLite & FMS)</b></summary>
506
-
507
- - **Pillar XV: Unified Persistence Layer**: Transition from file-based JSONL state to a high-performance SQLite engine with FTS5 semantic search.
508
- - **Pillar XVI: Federated Mesh Synthesis (FMS)**: Inter-project knowledge sharing via cryptographically signed `.mfb` (MindForge Bundles).
509
- - **Pillar XVII: Autonomous Skill Evolution (ASE)**: Automated mining of "Golden Traces" to synthesize reusable `.skill.md` artifacts.
510
- - **Pillar XVIII: Orbital Governance**: Hardware-locked security gates requiring HSM/Biometric attestation for high-impact mutations (>95).
511
- </details>
512
-
513
- <details>
514
- <summary><b>v7.x — Sovereign Intelligence (PQAS & Homing)</b></summary>
515
-
516
- - **Pillar XI: Post-Quantum Agentic Security (PQAS)**: Lattice-based (Dilithium-5) signatures and ZK-Proof bypasses for Tier 4 agent identities.
517
- - **Pillar XII: Proactive Semantic Homing**: Autonomous "Intent Hunting" where agents proactively claim tasks and peer-heal logic drift (>80) in the mesh.
518
- - **Pillar IX: Autonomous Resource Harvesting (ARH)**: Real-time token arbitrage and dynamic task routing based on MIR (Min-Intelligence-Requirement).
519
- - **Pillar X: Neural Drift Remediation (NDR)**: Semantic density heuristics and automated reasoning recovery to break logic loops and hallucinations.
520
- - **Agentic Learning Loop**: Mandatory "Read Before, Record After" protocol for all agentic actions, ensuring a persistent, self-improving engineering memory.
521
- </details>
522
-
523
- <details>
524
- <summary><b>v6.x — AgRevOps & Stability Patterns</b></summary>
525
-
526
- - **AgRevOps ROI Engine (Pillar VIII)**: Real-time value attribution ($100/hr dev saving mapping) for every autonomous reasoning cycle.
527
- - **FIM Expansion**: Aggregation of collective project health metrics via `PillarHealthTracker`.
528
- - **CADIA Optimizer (Pillar II Upgrade)**: Dynamic risk scoring (0-100) and session entropy guardrails to prevent rogue behaviors.
529
- - **Homing Signal Injection**: Automated capture of high-efficacy SCS homing instructions as durable, sharable knowledge.
530
- </details>
531
-
532
- <details>
533
- <summary><b>v5.10.x — Nexus Steering & AgRevOps</b></summary>
534
-
535
- - **Interactive Temporal Steering (Pillar VII)**: Hindsight injection and temporal slider navigation via the Nexus Dashboard.
536
- - **ROI Engine (Pillar VIII)**: Automated financial governance and cumulative agentic ROI tracking.
537
- - **Velocity Forecaster**: Statistical ETA prediction for milestones based on live telemetry.
538
- </details>
539
-
540
- <details>
541
- <summary><b>v5.9.x — Enterprise Level Hardening</b></summary>
542
-
543
- - **Unified NexusTracer**: Single, high-fidelity ART protocol singleton with a core asynchronous drive.
544
- - **Merkle-Style Audit Integrity**: Hardened SRE and ZTAI logs with cumulative Merkle-hash chains.
545
- - **MCA Circuit Breakers**: Stateful provider blacklisting in the `CloudBroker` with automated failure remediation.
546
- </details>
547
-
548
- <details>
549
- <summary><b>v5.7.x - v5.8.x — SRE & MCA Protocols</b></summary>
550
-
551
- - **Sovereign Reason Enclaves (v5.8)**: ZK-Proof compliance certificates for confidential reasoning cycles.
552
- - **Multi-Cloud Arbitrage (v5.7)**: Intelligence-first routing using persistent Task-to-Model success matrices.
553
- </details>
554
-
555
- <details>
556
- <summary><b>v5.1.x - v5.6.x — The "Enterprise" Era (Protocols & Trust)</b></summary>
557
-
558
- - **Sentinel Execution (v5.6)**: Binary Runtime Attestation and Reasoning Entropy Scoring (RES).
559
- - **Predictive Agentic Reliability (v5.5)**: Advanced loop detection (Semantic Mirroring) and self-healing triggers.
560
- - **Dynamic Blast Radius (v5.3/v5.4)**: Real-time impact analysis and circuit-breaker safety in the federated sync.
561
- - **Semantic Vector Consensus (v5.2)**: FIM v2 with cosine-similarity conflict resolution.
562
- - **Enterprise Edition Protocols (v5.1)**: 14 advanced agentic protocols (Brainstorming, Swarm, Parallel Mesh) integrated from Superpowers.
563
- </details>
564
-
565
- <details>
566
- <summary><b>v4.x — The Mesh & Nexus Revolution</b></summary>
567
-
568
- - **Enterprise Mesh (v4.3)**: Autonomous FinOps and Proactive Equilibrium (Wave Monitoring).
569
- - **Identity & Memory (v4.2)**: Zero-Trust Agentic Identity (ZTAI) with Ed25519 signing.
570
- - **MindForge Nexus (v4.1)**: Hierarchical ART tracing and trace context propagation.
571
- - **Mesh Dynamic Swarms (v4.0)**: Parallel, task-aware specialist clusters and micro-persona factory.
572
- </details>
573
-
574
- <details>
575
- <summary><b>v3.x — Reactive Autonomous Intelligence</b></summary>
576
-
577
- - **Context Sharding (SRD)**: 40% reduction in token waste via relevance-dense Hot/Warm/Cold context tiers.
578
- - **Adversarial Decision Synthesis (ADS)**: Zero-drift architectural logic through Red-Blue model debate.
579
- - **Temporal Vision**: Full-fidelity history navigation, hindsight injection, and automated state repair.
580
- - **RAG 2.0 (Auto-Shadowing)**: Background pattern retrieval from the local knowledge graph.
581
- </details>
582
-
583
- <details>
584
- <summary><b>v2.x — The Autonomous Enterprise & Knowledge Graph</b></summary>
585
-
586
- - **Multi-Runtime Support**: Official adapters for Claude Code, Antigravity, Cursor, Gemini, and Copilot.
587
- - **RAG 2.0**: Typed-edge Local Knowledge Graph with proactive context shadowing and TF-IDF search.
588
- - **Temporal Vision**: Full-fidelity history navigation, state snapshotting, and hindsight injection.
589
- - **Self-Building Skills**: Automated skill capture from documentation and phase outputs via `/mindforge:learn`.
590
- </details>
591
-
592
- <details>
593
- <summary><b>v1.x — Framework Foundation & Core Protocols</b></summary>
594
-
595
- - **Unified 4-Pillar Workflow**: Standardized `plan` → `execute` → `verify` → `ship` lifecycle.
596
- - **Specialized Persona Library**: 32+ high-performance engineering agents with defined capability matrices.
597
- - **Zero-Trust Logic**: Initial protocol enforcement and audit-trail persistence.
598
- </details>
599
-
600
- ---
601
-
602
- ## Security
603
- MindForge never stores credentials in files. Review:
604
- - `docs/security/SECURITY.md`
605
- - `docs/security/threat-model.md`
606
-
607
- ---
203
+ ## License
608
204
 
609
- ## ⚖️ License
610
205
  MIT © 2026 MindForge Team
611
- eam