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
@@ -0,0 +1,45 @@
1
+ # Changelog
2
+
3
+ ## [6.0.0-alpha] - 2026-03-29
4
+
5
+ The v6.0.0-alpha release introduces the final pillar of the MindForge Enterprise architecture: AgRevOps (Agentic Revenue Operations). This engine provides real-time ROI attribution for autonomous waves, enabling enterprises to quantify the business value of every agentic reasoning cycle.
6
+
7
+ ## Highlights (v6.0.0-alpha)
8
+
9
+ - **AgRevOps ROI Engine**: Real-time value attribution for autonomous task execution.
10
+ - **ROI Telemetry**: New `roi-telemetry.jsonl` stream for tracking cost efficiency vs. outcome quality.
11
+ - **Nexus Steering Sync**: Final synchronization of the `NexusTracer` and `NexusSteering` protocols into the core execution loop.
12
+ - **Protocol Automation**: Automated activation of `_extended` mindforge skills via the Neural Orchestrator.
13
+
14
+ ---
15
+
16
+ # MindForge v5.9.0 — Enterprise-Grade Hardening (Nexus Unification)
17
+
18
+ ## Top Summary (v5.9.0)
19
+
20
+ The v5.9.0 release elevates the MindForge Enterprise architecture to "Enterprise-Grade" by unifying the tracing infrastructure into a single, high-fidelity asynchronous ART protocol and hardening the governance and arbitrage pillars with advanced cryptographic and resilience patterns.
21
+
22
+ ## Highlights (v5.9.0)
23
+
24
+ - **Unified NexusTracer Singleton**: Migration of all tracing and reasoning capture to `bin/engine/nexus-tracer.js`. Standardized as a singleton with mandatory `async` methods to support ZTAI cryptographic signing.
25
+ - **Merkle-Style Audit Integrity**: Hardened SRE and ZTAI logs with Merkle-root cumulative hash chains, ensuring every audit entry is cryptographically linked to the entire session history.
26
+ - **MCA Circuit Breakers**: Stateful provider blacklisting in `CloudBroker` that automatically disables failing models for 10 minutes after 3 consecutive errors.
27
+ - **Intelligence Metrics Decay**: Historical performance data now favors recent trends via a 0.95 decay factor, ensuring routing adaptivity.
28
+ - **Async Test Suite**: 100% restoration of the core test suite (Nexus, SRE, RES) for the new asynchronous execution model.
29
+
30
+ ---
31
+
32
+ # MindForge v5.8.0 — Sovereign Reason Enclaves (ZK-Audit)
33
+
34
+ ## Top Summary (v5.8.0)
35
+
36
+ The v5.8.0 release implements the sixth pillar of the Hyper-Enterprise roadmap: Sovereign Reason Enclaves with Zero-Knowledge (ZK) Audit Trails. This enables agents to provide cryptographic proof of policy adherence for confidential reasoning without exposing proprietary content to global logs.
37
+
38
+ ## Highlights (v5.8.0)
39
+
40
+ - **ZK-Proof Compliance Certificates**: Simulated zero-knowledge proofs (DID-signed) for SRE sessions.
41
+ - **Privacy-Preserving Auditing**: `NexusTracer` replaces raw thought traces with verifiable certificates for isolated tasks.
42
+ - **Enclave Verification**: New `verifyZKProof` utility for non-custodial audit integrity checks.
43
+ - Synchronized `mindforge-cc` documentation suite for Pillar VII & VIII.
44
+ - Updated `CLAUDE.md` with standard `_extended` protocol awareness.
45
+
@@ -0,0 +1,29 @@
1
+ # Changelog
2
+
3
+ ## [6.1.0-alpha] - 2026-03-29
4
+
5
+ ### Added (v6.1.0-alpha: Sovereign Intelligence)
6
+
7
+ - **Pillar IX: Autonomous Resource Harvesting (ARH)**:
8
+ - Implemented `MarketEvaluator` for real-time token arbitrage.
9
+ - Dynamic task-to-model steering based on MIR (Min-Intelligence-Requirement).
10
+ - ROI Telemetry integration for tracking agentic cost-savings.
11
+ - **Pillar X: Neural Drift Remediation (NDR)**:
12
+ - Implemented `LogicDriftDetector` with semantic density and repetition heuristics.
13
+ - Integrated `RemediationEngine` for automated reasoning recovery (Injection/Restart).
14
+ - Hardened `NexusTracer` hooks for real-time drift sensing.
15
+ - **Hardened Sovereign Heuristics**: Improved repetitive logic detection using punctuation-aware token analysis.
16
+ - **ROI Arbitrage Ledger**: New audit event `roi_arbitrage_event` in `AUDIT.jsonl`.
17
+
18
+ ## Top Summary (v6.1.0-alpha)
19
+
20
+ MindForge v6.1.0-alpha completes the **Sovereign Intelligence** phase. The framework now possesses the ability to quantify its own economic value through resource harvesting and self-heal from cognitive decay through neural drift remediation.
21
+
22
+ ## Highlights (v6.1.0-alpha)
23
+
24
+ - **Autonomous FinOps (ARH)**: Real-time steering between tiered models based on task MIR.
25
+ - **Self-Healing Reasoning (NDR)**: Proactive interruption of logic loops and hallucinations.
26
+ - **Unified Integration**: Seamless integration of NDR/ARH into the core `NexusTracer` loop.
27
+
28
+ ---
29
+
@@ -0,0 +1,30 @@
1
+ # Changelog
2
+
3
+ ## [6.2.0-alpha] - 2026-03-29
4
+
5
+ ### Added (v6.2.0-alpha: Sovereign Pillars XI & XII)
6
+
7
+ - **Pillar XI: Post-Quantum Agentic Security (PQAS)**:
8
+ - Implemented `QuantumCrypto` for simulated lattice-based (Dilithium-5) signatures and ZK-Proof generation.
9
+ - Integrated `QuantumSafeKeyProvider` into `ZTAIManager` for Tier 4 (Quantum-Safe) agent identities.
10
+ - Hardened `PolicyEngine` with dynamic Biometric Challenges for Risk > 95 and ZK-Proof verification for high-leverage bypasses.
11
+ - **Pillar XII: Proactive Semantic Homing**:
12
+ - Implemented `IntentHarvester` for proactive, idle-state task claiming from the Federated Intelligence Mesh (FIM).
13
+ - Implemented `MeshSelfHealer` for peer-to-peer collaborative reasoning and recovery from logic drift > 80.
14
+ - Integrated proactive behaviors into the `AutoRunner` core loop.
15
+ - **Hardening & Verification**:
16
+ - Constant-time signature verification and cycle-detection for mesh healing.
17
+ - 100% pass rate on v7 specialized security and homing integration test suites.
18
+
19
+ ## Top Summary (v6.2.0-alpha)
20
+
21
+ MindForge v6.2.0-alpha achieves full **Sovereign Intelligence** status by hardening the mesh against quantum-era threats and transitioning from reactive wave-processing to proactive agentic homing.
22
+
23
+ ## Highlights (v6.2.0-alpha)
24
+
25
+ - **Quantum-Safe Identity (PQAS)**: Verifiable agentic signatures resistant to future cryptographic threats.
26
+ * **Proactive Homing**: Autonomous "Intent Hunting" that eliminates idle latency in the agentic mesh.
27
+ * **Edge-Case Biometrics**: Hardware-locked governance for catastrophic-risk operations (>95 Blast Radius).
28
+
29
+ ---
30
+
@@ -0,0 +1,21 @@
1
+ # Changelog
2
+
3
+ ## [6.2.0] - 2026-04-02
4
+
5
+ ### Added (v6.2.0: Sovereign Enterprise Stable)
6
+
7
+ - **Autonomous Agentic Learning (Double-Hook)**:
8
+ - Implemented `AGENTS_LEARNING.md` as a persistent, project-level engineering memory.
9
+ - Added automated hooks to capture architectural patterns and anti-patterns during phase execution.
10
+
11
+ - **Enterprise-Grade Professionalization**:
12
+ - Hardened and professionalized the entire documentation suite (Architecture, Security, Universal Commands).
13
+ - Hardened framework branding across all system identifiers and logs.
14
+ - Updated agent registry and workflow atlas for v6 consistency.
15
+
16
+ - **Identity Layer Hardening**:
17
+ - Professionalized source code logs and identifiers for enterprise-compliance.
18
+ - Test suite branding and identity alignment.
19
+
20
+ ---
21
+
@@ -0,0 +1,14 @@
1
+ # Changelog
2
+
3
+ ## [6.3.0] - 2026-04-08
4
+
5
+ ### Added (v6.3.0: Intelligence-Drift Coupling - IDC)
6
+
7
+ - **Dynamic Model Upgrading (IDC)**:
8
+ - Implemented `intelligence-interlock.js` to bridge NDR (Neural Drift Remediation) and ARH (Resource Arbitrage).
9
+ - Added "Critical Drift" alert thresholds to `LogicDriftDetector`.
10
+ - Integrated IDC signals into `AutoRunner`, allowing for proactive model tier upgrades when reasoning decay is detected.
11
+ - Hardened `RouterSteering` to respect mid-wave MIR overrides.
12
+
13
+ ---
14
+
@@ -0,0 +1,13 @@
1
+ # Changelog
2
+
3
+ ## [6.4.0] - 2026-04-08
4
+
5
+ ### Added (v6.4.0: Context Entropy Guard - CEG)
6
+
7
+ - **Context Entropy Guard (CEG)**:
8
+ - Implemented `context-entropy-guard.js` for active noise suppression and context pruning.
9
+ - Added semantic compression to `HandoverManager`, automatically summarizing stagnant reasoning loops into digests.
10
+ - Hardened Nexus Bundles against "Reasoning Entropy" (similarity-based token bloat).
11
+
12
+ ---
13
+
@@ -0,0 +1,13 @@
1
+ # Changelog
2
+
3
+ ## [6.5.0] - 2026-04-08
4
+
5
+ ### Added (v6.5.0: Reason-Source Alignment - RSA)
6
+
7
+ - **Requirement-to-Thought Mapping**: Integrated `ReasonSourceAligner` into the core Auto-Runner loop.
8
+ - **Mission Fidelity Tracking**: Every reasoning thought is now cross-referenced with `REQUIREMENTS.md` and tagged with a best-match REQ-ID.
9
+ - **Mission Drift Detection**: Real-time monitoring of "Mission Alignment" confidence scores to prevent autonomous side-questing.
10
+ - **Requirement Schema**: Established formal `[REQ-ID]` Markdown schema for project specs.
11
+
12
+ ---
13
+
@@ -0,0 +1,12 @@
1
+ # Changelog
2
+
3
+ ## [6.6.0] - 2026-04-08
4
+
5
+ ### Added (v6.6.0: Self-Corrective Synthesis - SCS)
6
+
7
+ - **Autonomous Self-Healing**: Integrated `SelfCorrectiveSynthesizer` into the `AutoRunner` wave loop.
8
+ - **Reasoning Drift Recovery**: Triggered when Mission Fidelity (RSA) drops below 0.50, synthesizing a "Homing Instruction" anchored to specific requirements.
9
+ - **Homing Signal Injection**: Automatically injects high-density refocus signals into the wave context to recover mission fidelity.
10
+
11
+ ---
12
+
@@ -0,0 +1,12 @@
1
+ # Changelog
2
+
3
+ ## [6.7.0] - 2026-04-09
4
+
5
+ ### Added (v6.7.0: Federated Intelligence Mesh - FIM Expansion)
6
+
7
+ - **Architectural Health Tracking**: Aggregates RSA and IDC scores into collective project health metrics via `PillarHealthTracker`.
8
+ - **Stability Pattern Extraction**: Captures high-efficacy SCS homing instructions as durable, sharable knowledge entries (`stability_pattern`).
9
+ - **AutoRunner Lifecycle Hooks**: Automated capture at phase completion for organizational sync.
10
+
11
+ ---
12
+
@@ -0,0 +1,13 @@
1
+ # Changelog
2
+
3
+ ## [7.0.0] - 2026-04-11
4
+
5
+ ### Added (v7.0.0: Sovereign Intelligence - Post-Quantum & Homing)
6
+
7
+ - **Pillar IX: Autonomous Resource Harvesting (ARH)**: Real-time token arbitrage and dynamic task-to-model steering based on MIR.
8
+ - **Pillar X: Neural Drift Remediation (NDR)**: Logic-drift detection and automated reasoning recovery via semantic density heuristics.
9
+ - **Pillar XI: Post-Quantum Agentic Security (PQAS)**: Lattice-based (Dilithium-5) signatures and ZK-Proof bypasses for future-proof identity.
10
+ - **Pillar XII: Proactive Semantic Homing**: Autonomous "Intent Hunting" where agents proactively claim tasks from the Federated Intelligence Mesh (FIM).
11
+
12
+ ---
13
+
@@ -0,0 +1,14 @@
1
+ # Changelog
2
+
3
+ ## [8.0.0] - 2026-04-12
4
+
5
+ ### Added (v8.0.0: Celestial Orchestration - SQLite & FMS)
6
+
7
+ - **Pillar XV: Unified Persistence Layer**: Transitioned from file-based JSONL state to a high-performance **SQLite** engine (`celestial.db`) with **FTS5** semantic reasoning support.
8
+ - **Pillar XVI: Federated Mesh Synthesis (FMS)**: Inter-project knowledge sharing via signed **MindForge Bundles (`.mfb`)** using ZTAI-signed identities.
9
+ - **Pillar XVII: Autonomous Skill Evolution (ASE)**: Implemented `SkillEvolver` to mine "Golden Traces" and synthesize reusable agentic skills.
10
+ - **Pillar XVIII: Orbital Governance**: Hardware-bound (HSM/Biometric) attestation for catastrophic-risk mutations (>95).
11
+ - **Core Vector Expansion**: Upgraded `VectorHub` with `better-sqlite3` and `Kysely` for type-safe, sub-millisecond persistence.
12
+
13
+ ---
14
+
@@ -0,0 +1,13 @@
1
+ # Changelog
2
+
3
+ ## [8.1.0] - 2026-04-13
4
+
5
+ ### Added (v8.1.0: Sovereign Identity — Pillar XIX)
6
+
7
+ - **Sovereign Identity Synthesis**: Autonomous creation and evolution of `SOUL.md` from execution traces.
8
+ - **Identity Hegemony**: Promoted `SOUL.md` to #1 Source of Truth in the instruction hierarchy.
9
+ - **XML-Structured Workflows**: Standardized project initialization and identity management with high-fidelity XML prompting.
10
+ - **Identity Engine**: Implemented `bin/memory/identity-synthesizer.js` with v8.1 mirroring heuristics.
11
+
12
+ ---
13
+
@@ -0,0 +1,12 @@
1
+ # Changelog
2
+
3
+ ## [8.2.0] - 2026-04-18
4
+
5
+ ### Added (v8.2.0: Autonomous SRE Layer — Pillars XX-XXIII)
6
+
7
+ - **Sentinel Engine**: Implemented `bin/sre/sentinel.js` for continuous observability and anomaly detection in the audit stream.
8
+ - **Shadow Mirror Isolation**: Hybrid replication system supporting Level 1 (Git) and Level 2 (Docker) deterministic isolation.
9
+ - **Adversarial SRE Debate**: Three-way consensus protocol for high-fidelity remediation auditing.
10
+ - **SLI-Gating Protocol**: Metric-driven verification loops to prevent performance regressions during self-healing.
11
+ - **Persona Hardening**: Registered `sre-engineer` and `sre-auditor`, with the Auditor locked to **Claude 4.5 Opus**.
12
+
@@ -0,0 +1,11 @@
1
+ # Changelog
2
+
3
+ ## [8.2.1] - 2026-04-25
4
+
5
+ ### Fixed (v8.2.1: Stability & Cleanup)
6
+
7
+ - **Payload Pruning**: Removed development-only test scripts from `bin/engine` and `bin/governance`.
8
+ - **State Sanitization**: Cleaned up local persistence files (`celestial.db`, `memory/*.jsonl`) and session-specific planning artifacts.
9
+ - **Structural Hardening**: Restored clean templates for `.planning/HANDOFF.json` and other core descriptors.
10
+ - **NPM Optimization**: Reduced package size by excluding unneeded build-time caches and logs.
11
+
@@ -0,0 +1,20 @@
1
+ # Changelog
2
+
3
+ ## [9.0.0] - 2026-04-30
4
+
5
+ ### Added (v9.0.0: Bedrock Meridian — Pillars XXIV-XXVIII)
6
+
7
+ - **Pillar XXIV: Grounded Wave Execution** — Replaced AutoRunner stubs with real HANDOFF-driven wave parsing, task dispatch, progress tracking, and state persistence. `hasNextWave()` reads HANDOFF.json wave groups. `executeWave()` iterates tasks with audit logging and repair-operator integration. `runPreFlight()` validates project state and restores progress from `auto-state.json`.
8
+ - **Pillar XXV: Model Topology Modernization** — Updated all model references from Claude 3.x to Claude 4.x family (`claude-opus-4-7`, `claude-sonnet-4-6`, `claude-haiku-4-5`). Updated `model-router.js`, `model-client.js`, `model-broker.js`, `cloud-broker.js`, and `MINDFORGE.md`. Aligned pricing tables and fallback chains.
9
+ - **Pillar XXVI: Unified Memory Architecture** — Added `knowledge` and `graph_edges` tables to VectorHub (SQLite). New `saveKnowledge()`, `searchKnowledge()`, `saveEdge()`, `getEdges()` methods. FTS5 index on knowledge content. Consolidates 4 JSONL-based memory systems into a single SQLite store.
10
+ - **Pillar XXVII: Schema Migration Engine** — Added `_migrations` table to VectorHub for tracking applied migrations. New `v9-unified-memory.js` migration script that reads legacy JSONL stores and imports into SQLite. Registered in `migrate.js` runner.
11
+ - **Pillar XXVIII: Integration Test Chain** — New `tests/v9-integration-chain.test.js` verifying the full pipeline: wave parsing, model topology, VectorHub schema, migration engine, and SDK sync. 17 assertions across all v9 pillars.
12
+
13
+ ### Changed (v9.0.0)
14
+
15
+ - **SDK**: Bumped `@mindforge/sdk` VERSION to `9.0.0`. Added `WaveExecutionResult` and `MigrationResult` types. Added `readAutoState()` and `isDatabaseInitialized()` to client.
16
+ - **VectorHub**: Removed try/catch `ALTER TABLE` pattern (v8 legacy). Schema creation is now declarative via `createTable().ifNotExists()`.
17
+ - **MINDFORGE.md**: Version bumped to `9.0.0-BEDROCK`. Model topology section normalized to Claude 4.x.
18
+
19
+ ---
20
+
@@ -4,24 +4,83 @@
4
4
 
5
5
  ---
6
6
 
7
+ ## 0. Syntax and required keys
8
+
9
+ **Read this first.** As of 11.9.2 `node bin/validate-config.js` and
10
+ `mindforge security-scan` can actually fail — before that they reported
11
+ `0 settings configured` and exited 0 on any input, so an invalid registry passed silently.
12
+
13
+ Two syntaxes are accepted:
14
+
15
+ ```text
16
+ [PLANNER] = claude-opus-4-7 # bracketed — CANONICAL, what the shipped MINDFORGE.md uses
17
+ PLANNER_MODEL=claude-opus-4-7 # plain — legacy, still read, used by examples/starter-project
18
+ ```
19
+
20
+ Prefer the bracketed form. A bracketed key must open the line (leading whitespace is allowed)
21
+ and be followed by `=`. Prose bullets that merely mention `[KEY]` are not parsed as settings.
22
+
23
+ **These five keys are REQUIRED.** Validation exits 1 if any is missing:
24
+
25
+ | Key | Example |
26
+ | :--- | :--- |
27
+ | `[VERSION]` | `11.9.2` — must match `^\d+\.\d+\.\d+$` |
28
+ | `[REACTIVE_MODE]` | `true` |
29
+ | `[PLANNER]` | `claude-opus-4-7` |
30
+ | `[EXECUTOR]` | `claude-sonnet-4-6` |
31
+ | `[MIN_SOUL_SCORE]` | `8` (range 0–10) |
32
+
33
+ Three more are **recommended** — absent ones produce a warning, not an error:
34
+ `[COST_WARN_USD]`, `[COST_HARD_LIMIT_USD]`, `[BLOCK_ON_SECURITY]`.
35
+
36
+ > `[COST_HARD_LIMIT_USD]` is **declared but not enforced** as of 11.9.2. Do not rely on it as a
37
+ > spend control; see the CHANGELOG.
38
+
39
+ ---
40
+
7
41
  ## 1. Model Configuration
8
42
 
9
43
  MindForge uses a tiered model routing system. You can specify exact models for different phases of the lifecycle.
10
44
 
11
- | Key | Description | Default |
12
- | :--- | :--- | :--- |
13
- | `PLANNER_MODEL` | Model used for task decomposition and planning. | `claude-sonnet-4-5` |
14
- | `EXECUTOR_MODEL` | Model used for code generation and implementation. | `claude-sonnet-4-5` |
15
- | `REVIEWER_MODEL` | Model used for code review and PR analysis. | `claude-opus-4-alpha` |
16
- | `VERIFIER_MODEL` | Model used for testing and UAT verification. | `claude-sonnet-4-5` |
17
- | `SECURITY_MODEL` | Model used for sensitive security scanning. | `claude-opus-4-alpha` |
18
-
19
- **Supported Values:**
20
-
21
- - `claude-opus-4-alpha` (High intelligence, slow, expensive)
22
- - `claude-sonnet-4-5` (Balanced, recommended)
23
- - `claude-haiku-4-5` (Fast, logical, best for trivial tasks)
24
- - `inherit` (Use the system-wide default)
45
+ The canonical keys are the short bracketed forms; the `*_MODEL` names are accepted aliases kept
46
+ for older configs.
47
+
48
+ | Key | Alias | Description | Shipped default |
49
+ | :--- | :--- | :--- | :--- |
50
+ | `[PLANNER]` | `PLANNER_MODEL` | Task decomposition and planning. | `claude-opus-4-7` |
51
+ | `[EXECUTOR]` | `EXECUTOR_MODEL` | Code generation and implementation. | `claude-sonnet-4-6` |
52
+ | `[REVIEWER]` | `REVIEWER_MODEL` | Code review and PR analysis. | `claude-sonnet-4-6` |
53
+ | `[VERIFIER]` | `VERIFIER_MODEL` | Testing and UAT verification. | `claude-sonnet-4-6` |
54
+ | `[SECURITY]` | `SECURITY_MODEL` | Sensitive security scanning. | `claude-opus-4-7` |
55
+ | `[DEBUG]` | — | Debugging and root-cause analysis. | `claude-opus-4-7` |
56
+
57
+ **Values are free-form strings** — the schema does not constrain them to a list, so a new model
58
+ id works without a framework upgrade. The ids shipped in `MINDFORGE.md` today are
59
+ `claude-opus-4-7`, `claude-sonnet-4-6` and `claude-haiku-4-5`; `inherit` selects the
60
+ system-wide default. Because the values are unconstrained, a typo is NOT caught by validation —
61
+ it falls through to the routing defaults.
62
+
63
+ ---
64
+
65
+ ## 1b. Numeric bounds enforced by validation
66
+
67
+ Out-of-range values now fail. These were previously documented nowhere a consumer reads.
68
+
69
+ | Key | Range | Key | Range |
70
+ | :--- | :--- | :--- | :--- |
71
+ | `MIN_SOUL_SCORE` | 0–10 | `MAX_TASKS_PER_PHASE` | 1–50 |
72
+ | `AUTO_SWARM_THRESHOLD` | 0–10 | `MIN_TEST_COVERAGE_PCT` | 0–100 |
73
+ | `DYNAMISM_LEVEL` | 1–5 | `MAX_FUNCTION_LINES` | 10–200 |
74
+ | `ADS_DEBATE_ROUNDS` | 1–10 | `MAX_CYCLOMATIC_COMPLEXITY` | 3–30 |
75
+ | `COMPACTION_THRESHOLD_PCT` | 50–90 | `MAX_FULL_SKILL_INJECTIONS` | 1–10 |
76
+ | `DASHBOARD_PORT` | 1024–65535 | `NEXUS_TRACE_RETENTION_DAYS` | 1–365 |
77
+ | `BROWSER_PORT` | 1024–65535 | `SHARD_RETAIN_DAYS` | 1–365 |
78
+ | `COST_WARN_USD` | 0–10000 | `AI_REVIEW_DAILY_LIMIT` | 0–500 |
79
+ | `COST_HARD_LIMIT_USD` | 0–10000 | `CI_MIN_COVERAGE_PCT` | 0–100 |
80
+ | `VERIFY_PASS_RATE_WARNING_THRESHOLD` | 0–1 | `DISCUSS_PHASE_REQUIRED_ABOVE_DIFFICULTY` | 1–5 |
81
+
82
+ If one of these rejects a value you consider legitimate, the bound is wrong — report it rather
83
+ than editing your registry to satisfy it.
25
84
 
26
85
  ---
27
86
 
@@ -202,11 +202,11 @@ mindforge <command> [options]
202
202
 
203
203
  ## 🚀 Dynamic Workflow Library
204
204
 
205
- Pre-built multi-agent workflow scripts triggered via `/mindforge:wf-*` commands. Each runs via Claude Code's `Workflow` tool with true parallel agent execution. **32 pre-built multi-agent workflows** across 5 tiers.
205
+ Pre-built multi-agent workflow scripts triggered via `/mindforge:wf-*` commands. Each runs via Claude Code's `Workflow` tool with true parallel agent execution. **35 pre-built multi-agent workflows** across 5 tiers.
206
206
 
207
207
  | Command | Tier | Description |
208
208
  | :--- | :--- | :--- |
209
- | `/mindforge:wf-catalog` | — | Browse all 32 workflows grouped by tier |
209
+ | `/mindforge:wf-catalog` | — | Browse all 35 workflows grouped by tier |
210
210
  | **Research tier** | | |
211
211
  | `/mindforge:wf-competitive-analysis` | research | Multi-angle competitive research producing a SWOT and positioning summary |
212
212
  | `/mindforge:wf-tech-evaluation` | research | Scored technology evaluation across DX, performance, security, ecosystem, and community |
@@ -226,6 +226,8 @@ Pre-built multi-agent workflow scripts triggered via `/mindforge:wf-*` commands.
226
226
  | `/mindforge:wf-mutation-testing` | dev | Mutant generator → parallel kill-test agents → mutation score + survival report |
227
227
  | `/mindforge:wf-code-explainer` | dev | Structural map → domain extraction → architecture patterns → guided narrative tour for onboarding |
228
228
  | `/mindforge:wf-design-system-audit` | dev | 5 parallel dimension auditors (spacing/color/typography/icons/a11y) → consistency score |
229
+ | `/mindforge:wf-orchestrate-review` | dev | 4-lens parallel review (factual, domain, safety, style) coordinated as one panel → single merged verdict |
230
+ | `/mindforge:wf-verification-loop` | dev | Implementer vs. scorer loop — revises against a fixed metric each round until maxed or round cap hit |
229
231
  | **Ops tier** | | |
230
232
  | `/mindforge:wf-incident-response` | ops | Parallel investigation across logs, metrics, traces, and code → mitigation → RCA → postmortem |
231
233
  | `/mindforge:wf-release-prep` | ops | Automated release pipeline: tests → changelog → version bump → PR → announcement draft |
@@ -240,6 +242,7 @@ Pre-built multi-agent workflow scripts triggered via `/mindforge:wf-*` commands.
240
242
  | `/mindforge:wf-documentation-gen` | intelligence | Parallel per-file doc generation → style normalization → publish-ready documentation |
241
243
  | `/mindforge:wf-api-migration` | intelligence | Breaking change detection → versioning strategy → migration guide → compatibility matrix |
242
244
  | `/mindforge:wf-data-pipeline-validate` | intelligence | Pipeline stage-by-stage validation → data quality gates → anomaly detection report |
245
+ | `/mindforge:wf-workflow-optimizer` | intelligence | Builder + scorer + optimizer roles — each round a separate agent proposes structural process changes, not just output tweaks |
243
246
  | **Beast tier** | | |
244
247
  | `/mindforge:wf-security-hardening` | beast | 5-angle OWASP parallel scout → 3-vote adversarial verification → threat model + remediation roadmap |
245
248
  | `/mindforge:wf-accessibility-audit` | beast | WCAG 2.2 parallel per-criterion audit → 3-vote adversarial verify failures → remediation spec |
@@ -247,13 +250,13 @@ Pre-built multi-agent workflow scripts triggered via `/mindforge:wf-*` commands.
247
250
 
248
251
  ---
249
252
 
250
- ## Dynamic Workflow Library (32 workflows)
253
+ ## Dynamic Workflow Library (35 workflows)
251
254
 
252
255
  All workflow commands follow the pattern `/mindforge:wf-<name>`.
253
256
 
254
257
  Invoke via CLI:
255
258
  ```bash
256
- node bin/mindforge-cli.js workflow list # browse all 32
259
+ node bin/mindforge-cli.js workflow list # browse all 35
257
260
  node bin/mindforge-cli.js workflow info <name> # phases + description
258
261
  ```
259
262
 
@@ -266,7 +269,7 @@ node bin/mindforge-cli.js workflow info <name> # phases + description
266
269
  | `/mindforge:wf-ux-heuristic-audit` | 10 Nielsen heuristics parallel audit → fix brief |
267
270
  | `/mindforge:wf-competitive-teardown` | 5 competitor angles → positioning report |
268
271
 
269
- ### Dev Tier (12 workflows)
272
+ ### Dev Tier (14 workflows)
270
273
  | Command | Description |
271
274
  |---------|-------------|
272
275
  | `/mindforge:wf-code-audit` | Parallel security + quality + performance audit |
@@ -281,6 +284,8 @@ node bin/mindforge-cli.js workflow info <name> # phases + description
281
284
  | `/mindforge:wf-mutation-testing` | Mutant generator → parallel kill-test → score |
282
285
  | `/mindforge:wf-code-explainer` | Structure → domain → architecture → narrative tour |
283
286
  | `/mindforge:wf-design-system-audit` | 5-dimension parallel audit → consistency score |
287
+ | `/mindforge:wf-orchestrate-review` | 4-lens panel (factual/domain/safety/style) → merged verdict |
288
+ | `/mindforge:wf-verification-loop` | Implementer vs. scorer loop → re-attempts until score maxed |
284
289
 
285
290
  ### Ops Tier (6 workflows)
286
291
  | Command | Description |
@@ -292,7 +297,7 @@ node bin/mindforge-cli.js workflow info <name> # phases + description
292
297
  | `/mindforge:wf-multi-repo-sync` | Per-repo audit → divergence map → sync plan |
293
298
  | `/mindforge:wf-cost-analysis` | Infra/API/query/bundle cost agents → ROI plan |
294
299
 
295
- ### Intelligence Tier (6 workflows)
300
+ ### Intelligence Tier (7 workflows)
296
301
  | Command | Description |
297
302
  |---------|-------------|
298
303
  | `/mindforge:wf-onboard-codebase` | Map → domain → architecture → guided tour |
@@ -301,6 +306,7 @@ node bin/mindforge-cli.js workflow info <name> # phases + description
301
306
  | `/mindforge:wf-documentation-gen` | Parallel doc gen → normalize → publish-ready |
302
307
  | `/mindforge:wf-api-migration` | Breaking change detection → guide → compat matrix |
303
308
  | `/mindforge:wf-data-pipeline-validate` | Stage-by-stage validation → quality gates |
309
+ | `/mindforge:wf-workflow-optimizer` | Builder + scorer + optimizer → revises the process itself, not just outputs |
304
310
 
305
311
  ### Beast Tier (3 workflows — 5 phases, 8+ agents, adversarial 3-vote verification)
306
312
  | Command | Description |
package/docs/faq.md CHANGED
@@ -40,7 +40,7 @@ Plugins are preferred for sharing and versioning.
40
40
  ## Dynamic Workflows
41
41
 
42
42
  **Q: How many workflows does MindForge v11.9.0 include?**
43
- 32 pre-built multi-agent workflows across 5 tiers: Research (5), Dev (12), Ops (6), Intelligence (6), Beast (3).
43
+ 35 pre-built multi-agent workflows across 5 tiers: Research (5), Dev (14), Ops (6), Intelligence (7), Beast (3).
44
44
 
45
45
  **Q: How do I run a workflow?**
46
46
  Via Claude Code slash command: `/mindforge:wf-code-audit`
@@ -49,8 +49,8 @@ Via CLI: `node bin/mindforge-cli.js workflow list` to browse, then `workflow inf
49
49
  **Q: What is the Beast tier?**
50
50
  Beast tier workflows run 5 phases with 8+ concurrent agents and adversarial 3-vote verification. Included: `security-hardening`, `accessibility-audit`, `security-threat-model`.
51
51
 
52
- **Q: Why are there only 32 workflows when some docs say 33?**
53
- The `deep-research` workflow was removed before the v11.8.0 release (the superpowers built-in `/deep-research` covers this better). The correct count is 32.
52
+ **Q: Why are there only 35 workflows when some docs say 33?**
53
+ The `deep-research` workflow was removed before the v11.8.0 release (the superpowers built-in `/deep-research` covers this better). The correct count is 35.
54
54
 
55
55
  ## Version & Stability
56
56
 
@@ -29,6 +29,12 @@ npx mindforge-cc@latest --claude --local
29
29
 
30
30
  After installation, the `mindforge` CLI command is available for runtime operations (health checks, security scans, headless execution, etc.).
31
31
 
32
+ **Global install** (system-wide `/mindforge` commands for your primary AI coding runtime):
33
+
34
+ ```bash
35
+ npm install -g mindforge-cc@latest
36
+ ```
37
+
32
38
  ### 2. Claude Code plugin (self-hosted marketplace)
33
39
 
34
40
  Install MindForge as a Claude Code plugin from its marketplace:
@@ -38,6 +44,8 @@ Install MindForge as a Claude Code plugin from its marketplace:
38
44
  /plugin install mindforge@mindforge
39
45
  ```
40
46
 
47
+ Prefer just a slice (e.g. Python agents)? Install a focused pack like `mindforge-lang@mindforge` instead. See [docs/plugin-installation.md](plugin-installation.md) for all 10 plugin packs, token-budget guidance, and team setup.
48
+
41
49
  ### 3. Standalone MCP server
42
50
 
43
51
  Run the MindForge MCP server (`mindforge-mcp-server`) over stdio — it exposes 7 tools (6 read-only plus 1 guarded write): `mindforge_health`, `mindforge_status`, `mindforge_memory_query`, `mindforge_memory_stats`, `mindforge_memory_find_related`, `mindforge_audit_log`, and `mindforge_memory_remember`.
@@ -62,15 +70,32 @@ To build on top of MindForge programmatically, install the TypeScript SDK:
62
70
  npm i mindforge-sdk
63
71
  ```
64
72
 
65
- ## Dynamic Workflow Library (32 workflows across 5 tiers)
73
+ ## Configuration & Runtimes
74
+
75
+ MindForge adapts to your existing engineering environment via runtime flags:
76
+
77
+ | Runtime | Global Command | Local Setup |
78
+ | :--- | :--- | :--- |
79
+ | **Claude Code** | `mindforge-cc --claude --global` | `mindforge-cc --claude --local` |
80
+ | **Antigravity** | `mindforge-cc --antigravity --global` | `mindforge-cc --antigravity --local` |
81
+ | **Cursor** | `mindforge-cc --cursor --global` | `mindforge-cc --cursor --local` |
82
+ | **GitHub Copilot** | `mindforge-cc --copilot --global` | `mindforge-cc --copilot --local` |
83
+ | **Gemini CLI** | `mindforge-cc --gemini --global` | `mindforge-cc --gemini --local` |
84
+
85
+ ### Advanced Setup Options
86
+ - **Combined Runtimes**: `mindforge-cc --runtime claude,cursor --local`
87
+ - **With Utilities**: `mindforge-cc --local --with-utils` (Installs specialized bin scripts)
88
+ - **Minimalist**: `mindforge-cc --local --minimal` (Only basic protocols, no persona library)
89
+
90
+ ## Dynamic Workflow Library (35 workflows across 5 tiers)
66
91
 
67
92
 
68
93
  | Tier | Count | Workflows |
69
94
  |------|-------|-----------|
70
95
  | Research | 5 | competitive-analysis, tech-evaluation, ai-model-eval, ux-heuristic-audit, competitive-teardown |
71
- | Dev | 12 | code-audit, feature-planner, pr-review, tdd-sprint, refactor-plan, test-coverage-gap, api-contract-test, debug-detective, writer-reviewer, mutation-testing, code-explainer, design-system-audit |
96
+ | Dev | 14 | code-audit, feature-planner, pr-review, tdd-sprint, refactor-plan, test-coverage-gap, api-contract-test, debug-detective, writer-reviewer, mutation-testing, code-explainer, design-system-audit, orchestrate-review, verification-loop |
72
97
  | Ops | 6 | incident-response, release-prep, dependency-health, database-migration, multi-repo-sync, cost-analysis |
73
- | Intelligence | 6 | onboard-codebase, perf-optimize, architecture-modernization, documentation-gen, api-migration, data-pipeline-validate |
98
+ | Intelligence | 7 | onboard-codebase, perf-optimize, architecture-modernization, documentation-gen, api-migration, data-pipeline-validate, workflow-optimizer |
74
99
  | Beast | 3 | security-hardening, accessibility-audit, security-threat-model |
75
100
 
76
101
  **Run any workflow:**
@@ -417,6 +417,6 @@ cd sdk && npm install && npm run build
417
417
 
418
418
  ## Installation
419
419
  ```bash
420
- npm install mindforge-sdk@11.9.0
420
+ npm install mindforge-sdk@11.9.1
421
421
  # or: npx mindforge-cc@stable # installs SDK as part of the framework
422
422
  ```
@@ -2,7 +2,7 @@
2
2
 
3
3
  This guide gets you from install to productive, with the minimum needed to run MindForge in a real project.
4
4
 
5
- > **v11.9.0 Stats:** 32 workflows · 221 slash commands · 232 engine skills · 211 personas · 0 CVEs · 258/258 IQ200 checks passing
5
+ > **v11.9.0 Stats:** 35 workflows · 221 slash commands · 232 engine skills · 216 personas · 0 CVEs · 258/258 IQ200 checks passing
6
6
 
7
7
  ## Prerequisites
8
8
 
@@ -96,7 +96,7 @@ MindForge uses a unified 4-pillar workflow, hardened by the **Neural Protocol Me
96
96
 
97
97
  ### Dynamic Workflow Library
98
98
 
99
- MindForge ships **32 pre-built workflow pipelines** across **219 commands**, organized into **5 tiers**:
99
+ MindForge ships **35 pre-built workflow pipelines** across **221 commands**, organized into **5 tiers**:
100
100
 
101
101
  | Tier | Description |
102
102
  |------|-------------|
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mindforge-cc",
3
- "version": "11.9.0",
3
+ "version": "11.9.2",
4
4
  "description": "MindForge \u2014 Sovereign Agentic Intelligence Framework. Sovereign Stability: Production-Hardened Agentic Intelligence (v11)",
5
5
  "bin": {
6
6
  "mindforge-cc": "bin/install.js",
@@ -48,11 +48,13 @@
48
48
  "docs/Templates/",
49
49
  "examples/",
50
50
  "CHANGELOG.md",
51
+ "changelogs/",
51
52
  "LICENSE",
52
53
  "MINDFORGE.md",
53
54
  "README.md",
54
55
  "RELEASENOTES.md",
55
- "SECURITY.md"
56
+ "SECURITY.md",
57
+ "!**/*.lock"
56
58
  ],
57
59
  "scripts": {
58
60
  "test": "node scripts/ci/validate-assets.js && node tests/run-all.js",
@@ -63,6 +65,7 @@
63
65
  "harness:compliance": "node bin/installer/harness-adapter-compliance.js --check",
64
66
  "release:ready": "node bin/utils/readiness-gate.js release",
65
67
  "validate:assets": "node scripts/ci/validate-assets.js",
68
+ "eval:retrieval": "node bin/eval/eval-harness.js --set golden-set-retrieval.json --min-recall 0.55",
66
69
  "commit": "cz",
67
70
  "prepare": "husky"
68
71
  },