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,15 @@
1
+ # Changelog
2
+
3
+ ## [10.0.6] - 2026-05-26 — "Complete Arsenal"
4
+
5
+ ### Added (v10.0.6)
6
+
7
+ - **17 new core skills** — microservices-patterns, cqrs-event-sourcing, system-design, business-analyst, product-manager, market-researcher, typescript-advanced, python-performance, react-performance, k8s-deployment, writing-plans, writing-skills, using-git-worktrees, code-tour, autonomous-agent-harness, mcp-server-patterns, proofreader.
8
+ - **10 new commands** — `/mindforge:microservices`, `/mindforge:system-design`, `/mindforge:brd`, `/mindforge:product-spec`, `/mindforge:market-research`, `/mindforge:code-tour`, `/mindforge:mcp-server`, `/mindforge:proofread`, `/mindforge:worktrees`, `/mindforge:plan-write`.
9
+ - **8 new personas** — business-analyst, product-owner, market-analyst, mcp-designer, proofreader, system-designer, worktree-manager, code-narrator.
10
+ - **3 new swarm templates** — ArchDesignSwarm (HITL system design), ProductSwarm (HITL product strategy), DocumentationSwarm (autonomous content quality).
11
+ - **Swarm templates v9.0.0** — Bump from v8.0.0 with 3 new templates (total: 29 swarm templates).
12
+ - **50 core skills milestone** — Framework now covers architecture, business, languages, workflow, infrastructure, and documentation domains.
13
+
14
+ ---
15
+
@@ -0,0 +1,15 @@
1
+ # Changelog
2
+
3
+ ## [10.0.7] - 2026-05-26 — "Meta Engineer"
4
+
5
+ ### Added (v10.0.7)
6
+
7
+ - **20 new core skills** — prompt-engineering, context-engineering, agent-orchestration-patterns, tool-design, guardrails-and-safety, observability-stack, ci-cd-pipeline, infrastructure-as-code, incident-management, chaos-engineering, data-modeling, api-versioning, search-implementation, design-system, state-management, responsive-patterns, auth-patterns, supply-chain-security, technical-writing, code-review-methodology.
8
+ - **10 new commands** — `/mindforge:prompt`, `/mindforge:context-budget`, `/mindforge:orchestrate`, `/mindforge:observability`, `/mindforge:pipeline`, `/mindforge:data-model`, `/mindforge:design-tokens`, `/mindforge:auth-flow`, `/mindforge:write-rfc`, `/mindforge:review-guide`.
9
+ - **8 new personas** — prompt-architect, agent-orchestrator, sre-lead, pipeline-engineer, data-architect, design-system-lead, auth-engineer, technical-writer-lead.
10
+ - **3 new swarm templates** — PromptEngineeringSwarm (HITL AI engineering), SRESwarm (HITL reliability), FrontendSwarm (autonomous design system).
11
+ - **70 core skills milestone** — Framework now covers AI engineering, DevOps, reliability, data, frontend, advanced security, and technical communication.
12
+ - **Swarm templates v10.0.0** — Bump from v9.0.0 with 3 new templates (total: 32 swarm templates).
13
+
14
+ ---
15
+
@@ -0,0 +1,15 @@
1
+ # Changelog
2
+
3
+ ## [10.0.8] - 2026-05-26 — "Deep Patterns"
4
+
5
+ ### Added (v10.0.8)
6
+
7
+ - **20 new core skills** — contract-testing, load-testing, mutation-testing, visual-regression-testing, monorepo-management, cli-design, developer-onboarding, error-handling-architecture, caching-strategies, migration-strategies, connection-pooling, event-driven-architecture, api-gateway-patterns, websocket-patterns, feature-flag-management, secrets-rotation, compliance-as-code, rag-architecture, fine-tuning-workflow, llm-cost-optimization.
8
+ - **10 new commands** — `/mindforge:contract-test`, `/mindforge:load-test`, `/mindforge:monorepo`, `/mindforge:cli`, `/mindforge:cache`, `/mindforge:events`, `/mindforge:secrets`, `/mindforge:rag`, `/mindforge:feature-flags`, `/mindforge:compliance`.
9
+ - **8 new personas** — contract-tester, dx-engineer, cache-architect, event-architect, compliance-engineer, ml-ops-engineer, platform-engineer, api-gateway-designer.
10
+ - **3 new swarm templates** — TestingDeepSwarm (autonomous deep testing), PlatformSwarm (HITL platform engineering), MLOpsSwarm (HITL ML operations).
11
+ - **90 core skills milestone** — Production-depth coverage for testing, caching, events, secrets, compliance, RAG, and cost optimization.
12
+ - **Swarm templates v11.0.0** — Bump from v10.0.0 with 3 new templates (total: 35 swarm templates).
13
+
14
+ ---
15
+
@@ -0,0 +1,15 @@
1
+ # Changelog
2
+
3
+ ## [10.0.9] - 2026-05-26 — "Full Spectrum"
4
+
5
+ ### Added (v10.0.9)
6
+
7
+ - **20 new core skills** — streaming-architecture, queue-design, real-time-sync, cost-estimation, technical-debt-management, capacity-planning, graceful-degradation, idempotency-patterns, rate-limiting-design, code-generation-patterns, dependency-management, git-workflow-design, i18n-architecture, a11y-testing, multi-tenancy-patterns, audit-logging, database-performance, bundle-optimization, graphql-patterns, pagination-patterns.
8
+ - **10 new commands** — `/mindforge:stream`, `/mindforge:queue`, `/mindforge:finops`, `/mindforge:tech-debt`, `/mindforge:degrade`, `/mindforge:idempotent`, `/mindforge:rate-limit`, `/mindforge:i18n`, `/mindforge:multi-tenant`, `/mindforge:graphql`.
9
+ - **8 new personas** — streaming-engineer, finops-analyst, debt-manager, resilience-engineer, codegen-specialist, i18n-architect, multi-tenancy-architect, graphql-designer.
10
+ - **3 new swarm templates** — StreamingSwarm (HITL real-time), ResilienceSwarm (autonomous failure engineering), GovernanceSwarm (HITL data governance).
11
+ - **110 core skills milestone** — Comprehensive coverage across all major software engineering domains achieved.
12
+ - **Swarm templates v12.0.0** — Bump from v11.0.0 with 3 new templates (total: 38 swarm templates).
13
+
14
+ ---
15
+
@@ -0,0 +1,16 @@
1
+ # Changelog
2
+
3
+ ## [10.1.0] - 2026-05-26 — "Strategic Intelligence"
4
+
5
+ ### Added (v10.1.0)
6
+
7
+ - **20 new core skills** — build-vs-buy, technology-radar, architecture-tradeoff-analysis, technical-interview-design, post-incident-learning, team-topology-design, sprint-retrospective-facilitation, knowledge-sharing-systems, estimation-techniques, on-call-design, experiment-design, analytics-instrumentation, notification-system-design, payment-integration, email-deliverability, agent-memory-design, agent-evaluation-framework, multi-turn-conversation-design, agent-tool-selection, human-in-the-loop-design.
8
+ - **10 new commands** — `/mindforge:build-vs-buy`, `/mindforge:tech-radar`, `/mindforge:team-topology`, `/mindforge:retro`, `/mindforge:experiment`, `/mindforge:analytics`, `/mindforge:payments`, `/mindforge:agent-memory`, `/mindforge:agent-eval`, `/mindforge:hitl`.
9
+ - **8 new personas** — decision-architect, team-coach, knowledge-curator, experiment-designer, payments-engineer, agent-memory-designer, agent-evaluator, hitl-architect.
10
+ - **3 new swarm templates** — DecisionSwarm (HITL decision quality), TeamDesignSwarm (HITL team topology), AgentMetaSwarm (autonomous self-improvement).
11
+ - **130 core skills milestone** — Category expansion into decision science, team engineering, product patterns, and agent meta-intelligence.
12
+ - **Minor version bump (10.1.0)** — Represents category expansion beyond pure engineering into strategy and meta-intelligence.
13
+ - **Swarm templates v13.0.0** — Bump from v12.0.0 with 3 new templates (total: 41 swarm templates).
14
+
15
+ ---
16
+
@@ -0,0 +1,15 @@
1
+ # Changelog
2
+
3
+ ## [10.1.1] - 2026-05-26 — "Scale & Edge"
4
+
5
+ ### Added (v10.1.1)
6
+
7
+ - **10 new core skills** — edge-computing, serverless-patterns, container-security, zero-trust-architecture, ai-agent-deployment, distributed-consensus, data-pipeline-design, dns-architecture, cdn-optimization, database-sharding-advanced.
8
+ - **6 new commands** — `/mindforge:edge`, `/mindforge:serverless`, `/mindforge:zero-trust`, `/mindforge:agent-deploy`, `/mindforge:data-pipeline`, `/mindforge:cdn`.
9
+ - **6 new personas** — edge-engineer, zero-trust-engineer, agent-ops-engineer, consensus-engineer, data-pipeline-architect, cdn-architect.
10
+ - **2 new swarm templates** — EdgeScaleSwarm (HITL edge + CDN), DistributedSwarm (HITL consensus + pipelines).
11
+ - **140 core skills milestone** — Comprehensive coverage of emerging technology and massive-scale patterns.
12
+ - **Swarm templates v14.0.0** — Bump from v13.0.0 with 2 new templates (total: 43 swarm templates).
13
+
14
+ ---
15
+
@@ -0,0 +1,14 @@
1
+ # Changelog
2
+
3
+ ## [10.2.0] - 2026-05-27 — "Industry Forge"
4
+
5
+ ### Added (v10.2.0)
6
+
7
+ - **10 new core skills** — healthcare-systems, fintech-patterns, ecommerce-architecture, gaming-backend, edtech-platform, saas-multi-tenant, media-streaming, iot-platform, marketplace-trust, logistics-optimization.
8
+ - **8 new commands** — `/mindforge:healthcare`, `/mindforge:fintech`, `/mindforge:ecommerce`, `/mindforge:gaming`, `/mindforge:edtech`, `/mindforge:iot`, `/mindforge:marketplace`, `/mindforge:logistics`.
9
+ - **8 new personas** — healthcare-engineer, fintech-architect, ecommerce-engineer, gaming-engineer, edtech-architect, iot-architect, marketplace-engineer, logistics-architect.
10
+ - **1 new swarm template** — IndustryVerticalSwarm (HITL domain-specific architecture).
11
+ - **150 core skills milestone** — Industry vertical coverage added.
12
+
13
+ ---
14
+
@@ -0,0 +1,13 @@
1
+ # Changelog
2
+
3
+ ## [10.3.0] - 2026-05-27 — "Leader's Edge"
4
+
5
+ ### Added (v10.3.0)
6
+
7
+ - **10 new core skills** — technical-leadership, mentoring-patterns, stakeholder-communication, conflict-resolution, incident-communication, hiring-engineering, delegation-patterns, meeting-architecture, performance-reviews, change-management.
8
+ - **6 new commands** — `/mindforge:lead`, `/mindforge:communicate`, `/mindforge:hire`, `/mindforge:delegate`, `/mindforge:meeting-design`, `/mindforge:change`.
9
+ - **6 new personas** — tech-lead-coach, communication-architect, hiring-strategist, change-agent, meeting-designer, mentorship-lead.
10
+ - **1 new swarm template** — LeadershipSwarm (HITL engineering leadership).
11
+
12
+ ---
13
+
@@ -0,0 +1,13 @@
1
+ # Changelog
2
+
3
+ ## [10.4.0] - 2026-05-27 — "Cross-Platform"
4
+
5
+ ### Added (v10.4.0)
6
+
7
+ - **10 new core skills** — react-native-patterns, flutter-architecture, offline-first-design, progressive-web-app, mobile-performance, cross-platform-testing, app-store-deployment, mobile-security, responsive-native, push-notification-architecture.
8
+ - **6 new commands** — `/mindforge:mobile`, `/mindforge:react-native`, `/mindforge:flutter`, `/mindforge:offline`, `/mindforge:pwa`, `/mindforge:push-notify`.
9
+ - **6 new personas** — mobile-architect, react-native-engineer, flutter-engineer, offline-specialist, mobile-security-engineer, pwa-architect.
10
+ - **1 new swarm template** — MobileSwarm (HITL cross-platform architecture).
11
+
12
+ ---
13
+
@@ -0,0 +1,13 @@
1
+ # Changelog
2
+
3
+ ## [10.5.0] - 2026-05-27 — "AI Frontier"
4
+
5
+ ### Added (v10.5.0)
6
+
7
+ - **10 new core skills** — multimodal-ai, ai-safety-alignment, synthetic-data-generation, model-evaluation, embedding-systems, llm-orchestration, knowledge-graphs, ml-feature-store, ai-cost-management, autonomous-agents.
8
+ - **8 new commands** — `/mindforge:multimodal`, `/mindforge:ai-safety`, `/mindforge:embeddings`, `/mindforge:llm-route`, `/mindforge:knowledge-graph`, `/mindforge:feature-store`, `/mindforge:ai-cost`, `/mindforge:agent-design`.
9
+ - **8 new personas** — multimodal-engineer, ai-safety-engineer, embedding-architect, llm-orchestrator, knowledge-engineer, feature-store-engineer, ai-economist, agent-architect.
10
+ - **1 new swarm template** — AIFrontierSwarm (HITL AI system architecture + safety).
11
+
12
+ ---
13
+
@@ -0,0 +1,13 @@
1
+ # Changelog
2
+
3
+ ## [10.6.0] - 2026-05-27 — "Data Alchemy"
4
+
5
+ ### Added (v10.6.0)
6
+
7
+ - **10 new core skills** — causal-inference, feature-engineering, ml-monitoring, data-governance, stream-processing, data-lakehouse, experiment-platform, data-mesh, real-time-analytics, data-privacy-engineering.
8
+ - **6 new commands** — `/mindforge:causal`, `/mindforge:lakehouse`, `/mindforge:data-mesh`, `/mindforge:stream`, `/mindforge:privacy-eng`, `/mindforge:realtime-analytics`.
9
+ - **6 new personas** — causal-scientist, data-mesh-architect, stream-engineer, lakehouse-architect, privacy-engineer, analytics-engineer.
10
+ - **1 new swarm template** — DataAlchemySwarm (HITL data architecture + privacy).
11
+
12
+ ---
13
+
@@ -0,0 +1,15 @@
1
+ # Changelog
2
+
3
+ ## [10.7.0] - 2026-05-27 — "Platform Sovereign"
4
+
5
+ ### Added (v10.7.0)
6
+
7
+ - **10 new core skills** — internal-developer-platform, self-serve-infrastructure, platform-reliability, developer-productivity-metrics, api-marketplace, build-system-optimization, secrets-platform, environment-management, platform-observability, migration-platform.
8
+ - **6 new commands** — `/mindforge:platform`, `/mindforge:build-opt`, `/mindforge:secrets-mgmt`, `/mindforge:environments`, `/mindforge:observability-platform`, `/mindforge:migration-mgmt`.
9
+ - **6 new personas** — platform-lead, build-engineer, environment-engineer, productivity-analyst, secrets-engineer, migration-architect.
10
+ - **1 new swarm template** — PlatformSwarmV2 (HITL platform engineering + migration).
11
+ - **200 core skills milestone** — Full coverage across 12 domains.
12
+ - **Swarm templates v15.0.0** — 49 total templates.
13
+
14
+ ---
15
+
@@ -0,0 +1,66 @@
1
+ # Changelog
2
+
3
+ ## [11.0.0] - 2026-05-28 — "Sovereign Stability"
4
+
5
+ ### Breaking Changes
6
+
7
+ - `verifyZKProof()` returns structured `{ verified, reason }` instead of throwing
8
+ - `signPQ()` returns `{ signature, simulated, algorithm }` object instead of raw string
9
+ - Wave task execution order within waves is no longer deterministic
10
+ - SDK bumped to 11.0.0 with new type exports
11
+ - Dashboard tokens now expire after 24 hours
12
+ - `TemporalHub.captureState()` and `rollbackTo()` are now async
13
+
14
+ ### Added
15
+
16
+ - LRUMap utility class for bounded caches with eviction callbacks
17
+ - Atomic JSON write primitives (write-to-temp, fsync, rename)
18
+ - AUDIT.jsonl log rotation with gzip archival (max 5000 lines)
19
+ - HANDOFF.json structural validation (fail-open)
20
+ - Temporal snapshot garbage collection (retain 50, expire > 7 days)
21
+ - BM25 scoring with document-length normalization
22
+ - Persistent index cache (mtime-based invalidation)
23
+ - Persistent adjacency index for knowledge graph
24
+ - Correction effectiveness tracking in self-corrective synthesizer
25
+ - Full remediation strategy implementations (CONTEXT_COMPRESSION, GOLDEN_TRACE_INJECTION, REASONING_RESTART)
26
+ - Graduated intelligence interlock (+1/+2/MAX tier) with cost-awareness
27
+ - 3-tier stuck detection (hash → length → truncated Levenshtein)
28
+ - Adaptive context window (10/20/30 based on velocity)
29
+ - Configurable external ZK verifier module path
30
+ - Ephemeral SRE enclave keys (crypto.randomBytes)
31
+ - Time-limited RBAC role elevation with auto-expiry
32
+ - Session-scoped ZTAI agent registry
33
+ - Dashboard rate limiting (100 req/min/IP) and token expiration (24h)
34
+ - /api/v1/token/refresh endpoint
35
+ - Optional GPG approval verification
36
+ - GET /api/v1/system observability endpoint (heap, uptime, audit stats)
37
+ - checkHeapHealth() with warning/critical thresholds
38
+ - Remediation effectiveness persistence
39
+ - Model router dynamic reload (mtime-based, 60s interval)
40
+ - P95 latency ring buffer for cloud broker
41
+ - EIS client with real fetch + 3-retry exponential backoff
42
+ - Semaphore-based parallel wave execution (max concurrency configurable)
43
+ - WebSocketEventStream with auto-reconnect
44
+ - SDK streamExecution() with AsyncIterable<StreamChunk>
45
+ - SDK batchExecute() with concurrent task execution
46
+ - SDK validateRuntimeConfig()
47
+ - Model streaming support (Anthropic, OpenAI, Gemini providers)
48
+ - Migration script (bin/migrations/10.7.0-to-11.0.0.js)
49
+
50
+ ### Changed
51
+
52
+ - sessionDriftHistory bounded to 500 entries via LRUMap
53
+ - entropyCache bounded to 1000 entries via LRUMap
54
+ - Cloud broker failure tracking uses 5-minute sliding window
55
+ - Self-corrective synthesizer window expanded from 10 → 50 events
56
+ - Context refactorer uses adaptive window instead of fixed 20
57
+
58
+ ### Fixed
59
+
60
+ - Memory leaks from unbounded Maps in long-running sessions
61
+ - Data corruption risk on process crash during state file writes
62
+ - Disk exhaustion from unbounded AUDIT.jsonl and snapshot growth
63
+ - Hardcoded SRE enclave private key (security issue)
64
+
65
+ ---
66
+
@@ -0,0 +1,10 @@
1
+ # Changelog
2
+
3
+ ## [11.0.1] - 2026-05-30 — "Stability Patch"
4
+
5
+ ### Fixed
6
+
7
+ - **Version drift**: reconciled `.mindforge/config.json` (was 10.7.0) with the 11.x line; added a fail-closed pre-flight version-consistency assertion (`bin/utils/version-check.js`) and a regression test that runs the migration and asserts its post-state, so the drift cannot silently return. (UC-01)
8
+ - **Lint & dead code**: resolved all 109 ESLint errors, removed orphaned `bin/dashboard/team-tracker.js`, and made CI fail on any lint error. Fixed a latent `no-const-assign` runtime crash in `bin/review/ads-engine.js`. (UC-02)
9
+ - **SDK `executeCommand` no-op**: replaced the published no-op stub (which made `batchExecute` report every task "fulfilled" while executing nothing) with a real `child_process.spawn` executor with stdout/stderr capture, timeout (SIGTERM→SIGKILL), and exit-code propagation; added a regression test against the compiled dist. (UC-07a)
10
+
@@ -0,0 +1,56 @@
1
+ # Changelog
2
+
3
+ ## [11.1.0] - 2026-05-31 — "Beast Mode"
4
+
5
+ ### Added
6
+
7
+ - **Pillar I — Integrity & Trust**
8
+ - `bin/utils/append-queue.js`: single-writer fsync'd append queue for concurrent-safe durable writes (UC-09)
9
+ - `bin/governance/audit-hash.js`: single canonical SHA-256 hasher shared by writer + verifier (UC-04)
10
+ - `bin/governance/audit-verifier.js` + `bin/verify-audit.js` CLI: fail-closed hash-chain verifier (`exit 1` on any break) (UC-04)
11
+ - All 7 audit-write paths unified through `appendAuditEntrySync` — the audit log is now genuinely tamper-evident with a verifiable prev-hash chain (UC-04b)
12
+ - Simulated PQC demoted: `pqas_enabled=false` by default, gated behind `experimental.pqc_demo`; Tier-3 uses real Ed25519 (UC-24)
13
+
14
+ - **Pillar II — Orchestration Correctness**
15
+ - `bin/autonomous/dependency-dag.js`: real Kahn topological sort + cycle detection, ported from test-only to the engine (UC-03)
16
+ - `planWaves(handoffs, {useDag:true})` opt-in DAG wave planning — explicit `.wave` always wins, legacy default unchanged (UC-03)
17
+ - Pre-flight cycle detection halts loud before any wave executes (UC-03)
18
+ - Wave-boundary timeout enforcement: `isTimedOut` + status `'timeout'` + resumable state (UC-14)
19
+ - Opt-in rollback hook records intent on terminal ESCALATE (no auto git-reset by default) (UC-14)
20
+ - `bin/engine/council-runtime.js`: minimal 4-voice council runtime (ADS loop) with injectable model, consensus scoring, dissent capture (UC-10)
21
+
22
+ - **Pillar III — Cost-Aware Routing**
23
+ - `bin/models/pricing-registry.js`: single source of truth for model pricing, loaded from `config.json` market_registry (UC-05)
24
+ - All 3 providers routed through the registry — hardcoded pricing eliminated (UC-05)
25
+ - Prompt-cache accounting: `cache_control:{type:'ephemeral'}` on system blocks, `cache_read`/`cache_creation` parsed + priced at ~10% input rate (UC-21)
26
+ - `bin/models/difficulty-scorer.js`: heuristic 1-10 scorer with Tier-3 floor (UC-06)
27
+ - Shadow-mode difficulty routing: logs intended model without changing actual selection (UC-06)
28
+
29
+ - **Pillar IV — Native Alignment + Observability**
30
+ - `.claude/settings.json` with hooks under real native events (`PostToolUse`/`PreToolUse`/`SessionStart`) — the security guard and context monitor now actually fire (UC-19a)
31
+ - `bin/hooks/instinct-capture-hook.js`: auto-captures behavioral patterns via PostToolUse, respects session limit (UC-11)
32
+ - `bin/engine/otel-exporter.js`: optional OTel GenAI exporter mapping NexusTracer spans to `gen_ai.*` semantic conventions, gated behind `OTEL_EXPORTER_OTLP_ENDPOINT` (UC-18)
33
+ - `bin/memory/retrieval-fusion.js`: Reciprocal Rank Fusion (RRF) over knowledge-graph + BM25 retrieval paths, replacing incomparable linear blends (UC-20)
34
+
35
+ ### Fixed
36
+
37
+ - Audit-writer `close()` data-loss bug: threshold-triggered flushes were un-awaited, losing up to 10 entries on close (UC-09)
38
+ - Audit-writer flush failure no longer crashes the process via unhandled rejection — logs to stderr (UC-09)
39
+ - Vector-hub exit guard: `_dirty` boolean → pending-saves counter, closing a window where scheduled-but-unwritten saves were lost on hard exit (UC-09)
40
+ - `isTimedOut` fails CLOSED on malformed `timeout_at` (garbage deadline = halt, not run unbounded) (UC-14)
41
+ - Council position validation rejects NaN confidence / invalid recommendations (UC-10)
42
+ - Dissent is now captured under NO_CONSENSUS verdict (the deadlock case where it matters most) (UC-10)
43
+ - Pre-flight DAG check only cycle-checks stable-id tasks (id-less tasks can't be dependency targets) (UC-03)
44
+ - `groupIntoWaves` self-defends: dangling dep throws "Unknown dependency" (not misleading "Circular") (UC-03)
45
+
46
+ ### Changed
47
+
48
+ - Audit rotation retired (it broke the hash chain at every 5000-line boundary); AUDIT.jsonl grows unbounded for now — chain-aware compaction is a deferred future feature (UC-04b)
49
+ - `knowledge-store.js` appends now use `appendDurableSync` (openSync+writeSync+fsyncSync+closeSync) for guaranteed durability (UC-09)
50
+ - `auto-shadow.js` `generateShadowContext()` now fuses retrieval paths via RRF instead of a single-path linear blend (UC-20)
51
+
52
+ ### Removed
53
+
54
+ - Orphaned `createAuditWriter` buffered path (zero production callers after UC-04b unification)
55
+ - Hardcoded per-token pricing from `anthropic-provider.js`, `openai-provider.js`, `gemini-provider.js` (replaced by PricingRegistry)
56
+
@@ -0,0 +1,41 @@
1
+ # Changelog
2
+
3
+ ## [11.2.0] - 2026-05-31 — "Verification & Trust"
4
+
5
+ ### Added
6
+
7
+ - **UC-08 — Unified Verification Runner**
8
+ - `bin/engine/verification-runner.js`: orchestrates test/lint/audit/typecheck stages into structured results with pass/fail/skip per stage
9
+ - `bin/engine/verify-cli.js`: CLI entrypoint writing `.planning/VERIFICATION.md` reports
10
+ - `mindforge verify` command registered in CLI
11
+
12
+ - **UC-25 — Eval Harness**
13
+ - `bin/eval/eval-harness.js`: recall@k, nDCG (graded relevance), and `runEval()` orchestrator for measuring retrieval quality
14
+ - `bin/eval/golden-set-retrieval.json`: 10-query seed golden set covering orchestration, security, memory, cost, verification, hooks, and architecture domains
15
+
16
+ - **UC-22 — Tool/MCP Trust Boundaries**
17
+ - `bin/security/trust-boundaries.js`: manifest pinning (deterministic SHA-256 with recursive key sort), tamper detection, untrusted output tagging with provenance, and high-impact command detection
18
+ - `bin/security/trust-gate-hook.js`: PreToolUse hook that blocks destructive Bash commands (rm -rf, force-push, DROP TABLE, hard reset) via native Claude Code hooks
19
+ - Trust-gate registered in `.claude/settings.json` PreToolUse
20
+
21
+ - **Council CLI**
22
+ - `bin/council-cli.js`: thin wrapper wiring `runCouncil` to the `/mindforge:council` command with structured JSON output and formatted display
23
+
24
+ ### Fixed
25
+
26
+ - `auto-runner.js`: removed erroneous `new` on singleton ZTAIManager instance (was line 692)
27
+
28
+ ### Removed
29
+
30
+ - Dead `quantum-verify` CLI command entry (no handler existed)
31
+ - Dead `AuditRotator` class and its export from `bin/utils/file-io.js` (zero callers; rotation broke the hash chain at rotation boundaries — see `bin/autonomous/audit-writer.js`)
32
+
33
+ ### Changed
34
+
35
+ - Config `pqas_signing` provider clarified as "Dilithium-5 (simulated — inactive)"
36
+ - Banner version strings updated to v11.1.0 in self-corrective-synthesizer and remediation-engine
37
+ - SDK README heading updated to "New in v11.1.0"
38
+ - Version bumped to 11.2.0 across package.json and config.json
39
+
40
+ ---
41
+
@@ -0,0 +1,38 @@
1
+ # Changelog
2
+
3
+ ## [11.2.1] - 2026-05-31 — "Hardening" (security & integrity audit remediation)
4
+
5
+ Post-v11.2.0 audit remediation. Closes every exploitable security defect and
6
+ false-assurance stub surfaced by the end-to-end audit. No new features, no
7
+ breaking changes — fixes and honest-labeling only.
8
+
9
+ ### Security (fixed)
10
+
11
+ - **trust-gate-hook**: scans the whole command + every line (a benign first line could previously cloak a destructive later line)
12
+ - **orbital-guardian**: `verify()` re-checks the Ed25519 attestation signature (added `did`/`signed_message` columns + migration); rejects forged APPROVED rows
13
+ - **policy-engine**: `reasoning_proof` alone no longer bypasses the blast-radius limit (`isProofValid` inits false; cryptographic `pq_proof` path unchanged)
14
+ - **shadow-mirror**: git calls use `execFileSync` (argv) + fail-closed `sanitizeRemediationId()` — closes command injection via `remediation_id`
15
+ - **trust-boundaries `isHighImpact`**: added chmod/chown/dd/mv/kill/shutdown/eval/command-substitution/redirect detection + shell-obfuscation normalization; narrowed interpreter-script pattern to stop false-positives on `node <projectfile>`
16
+ - **eis-client**: `verifyRemoteProvenance` delegates to real ZTAI signature verification, fail-closed (was returning true for any non-empty signature)
17
+
18
+ ### Integrity / honest labeling (fixed)
19
+
20
+ - **ztai-archiver**: `verifyIntegrity()` recomputes the Merkle root from the live log (was a no-op `return true`); fail-closed on tamper/delete/reorder
21
+ - **mesh-self-healer**: emits an honest degraded advisory instead of fabricated 94%/100% consensus
22
+ - **logic-validator**: probes Ollama when reachable, honest heuristic fallback; stopped advertising the dead model path
23
+ - **reason-source-aligner**: consistent return shape (uninitialized no longer silently disables the mission-fidelity gate); real Jaccard similarity
24
+ - **sre-manager**: HMAC artifact relabeled as integrity tag, not "ZK-Proof"
25
+ - **installer-core**: PQAS-enabled message gated on the real `experimental.pqc_demo` flag
26
+ - **finding-synthesizer**: detects real severity-gap contradictions (was hardcoded `[]`)
27
+ - **logic-drift-detector**: relabeled heuristic, not "Neural"
28
+ - **session-manager / shadow-mirror(docker) / regression-writer / skill-registry**: honest disclosure instead of silent empties / fake isolation / tautological tests / mock placeholders
29
+ - **MINDFORGE.md**: `[PQAS_ENFORCED]` reconciled to reflect simulated/inactive default; **ztai-manager** logs relabeled `[ZTAI-HSM-SIM]`
30
+
31
+ ### CI / hygiene
32
+
33
+ - **release workflow**: asserts the git tag matches `package.json` version (fail-closed) + skips publish if the version is already on npm
34
+ - **version-check**: runtime drift check widened to all 4 sources (was 2); SDK README guarded by test
35
+ - removed dead `AuditRotator` class (CHANGELOG had wrongly claimed it removed); deprecated orphaned `createAppendQueue`
36
+ - refreshed stale `v11.1.0` banners → current; added `cost_routing.shadow_mode` latch
37
+ - version bumped to 11.2.1 across all sources
38
+
@@ -0,0 +1,45 @@
1
+ # Changelog
2
+
3
+ ## [11.3.0] - 2026-06-04 — "Legion" (154-subagent expansion)
4
+
5
+ Imports the full VoltAgent `awesome-claude-code-subagents` collection (154 Claude-Code-native
6
+ subagents across 10 categories) into MindForge, fully rebranded. Additive and
7
+ backward-compatible — no existing persona, skill, or command changed behavior.
8
+
9
+ ### Added
10
+
11
+ - **`subagents/` tree** — 154 specialized subagent definitions in 10 categories
12
+ (`01-core-development` … `10-research-analysis`), kept verbatim from upstream except
13
+ the rebrand and collision/functional fixes below. Agent bodies are unmodified prose.
14
+ - **`.mindforge/imported-agents.jsonl`** — generated index (name → path → category → model →
15
+ description) and **`scripts/build-subagent-index.js`** to regenerate it deterministically.
16
+ - **`bin/spawn-agent.js subagent <name>`** — third loader mode that resolves an imported
17
+ subagent via the index. Hardened with a strict name allowlist (`[A-Za-z0-9-_]`), exact
18
+ index-match resolution (never builds a path from input), and a `subagents/` containment
19
+ check — defense-in-depth path-traversal guards consistent with `BLOCK_ON_SECURITY`.
20
+ - **Installer delivery** — `bin/installer-core.js` now installs the 154 subagents into the
21
+ runtime's native agents directory (`.claude/agents/`, via the new `agentsSubdir` runtime
22
+ config + `installSubagents()`), flattening the category tree (READMEs excluded) so Claude
23
+ Code auto-discovers them. Runs for both global and local scope; mirrored to `.claude/agents/`
24
+ for non-claude local runtimes. Shown in `--dry-run` and the payload manifest; `--uninstall`
25
+ removes only the imported set, never the user's own agents. The `.mindforge/imported-agents.jsonl`
26
+ index ships with `.mindforge/`, so the `subagent` loader mode also works post-install.
27
+ - **`tests/subagent-import.test.js`** — asserts 154 indexed, every path exists, all 16
28
+ collisions renamed, no bare-name clash with personas, and the loader's traversal guards.
29
+
30
+ ### Changed (rebrand — VoltAgent → MindForge)
31
+
32
+ - Plugin/marketplace metadata (`subagents/.claude-plugin/marketplace.json` + 10 category
33
+ `plugin.json`) renamed `voltagent-*` → `mindforge-*`, author → MindForge Team, URLs →
34
+ `github.com/sairam0424/MindForge`. Per-plugin versions preserved for upstream re-sync.
35
+ No live marketplace is published — metadata only.
36
+ - 16 name collisions with existing hand-authored MindForge personas resolved with a `-cc`
37
+ suffix (`api-designer-cc`, `debugger-cc`, …); the original personas remain authoritative
38
+ for the bare names.
39
+ - **agent-installer** fetch URLs repointed to `sairam0424/MindForge` under `subagents/`.
40
+ - **design-bridge** VoltAgent design-md dependency replaced with a `<DESIGN_MD_SOURCE>`
41
+ placeholder + a needs-configuration notice (MindForge ships no design-md repo yet).
42
+ - Dead VoltAgent Discord/sponsor links removed (no MindForge equivalent).
43
+ - `package.json` `files` allowlist now ships `subagents/` + the index; README capability
44
+ line notes the 154 subagents.
45
+
@@ -0,0 +1,39 @@
1
+ # Changelog
2
+
3
+ ## [11.3.1] - 2026-06-05 — Packaging hotfix (commands, skills & framework now ship)
4
+
5
+ Critical fix for v11.3.0, where a too-narrow npm `files` allowlist silently dropped
6
+ most of the product from the published tarball. Users who ran `npx mindforge-cc` got
7
+ only hooks, personas, subagents, and three `.mindforge/` folders — **no slash commands,
8
+ no skills, and an incomplete framework** — with no error (the installer skips any source
9
+ absent from the tarball). v11.3.1 restores the full payload and adds a regression test
10
+ so this class of bug cannot ship silently again.
11
+
12
+ ### Fixed
13
+
14
+ - **npm `files` allowlist** (`package.json`) widened to ship what the installer reads:
15
+ `.claude/commands/` (174 slash commands), `.agent/mindforge/` + `.agent/forge/`,
16
+ `.agent/skills/` (73 skills), the entry `.claude/CLAUDE.md`, and the full `.mindforge/`
17
+ framework (`governance`, `integrations`, `intelligence`, `memory`, `metrics`, `models`,
18
+ `org`, `plugins`, `team` — previously only `engine`/`personas`/`skills` reached users).
19
+ Runtime state is explicitly **excluded** (`celestial.db`, `metrics/token-usage.jsonl`,
20
+ `memory/pattern-library.jsonl`) — `files` overrides `.npmignore`, so these are negated
21
+ in the allowlist itself.
22
+ - **`.planning/` scaffolding now ships and installs** — sourced from the clean, generic
23
+ `examples/starter-project/.planning/` (never the framework repo's own live `.planning/`,
24
+ which holds dev state: `AUDIT.jsonl`, `slack-threads.json`, `jira-sync.json`). Added the
25
+ four missing starter templates (`ROADMAP.md`, `REQUIREMENTS.md`, `ARCHITECTURE.md`,
26
+ `RELEASE-CHECKLIST.md`) so the autonomous engine (`/mindforge:auto`, `:next`) has the
27
+ files it expects.
28
+ - **`docs/References` / `docs/Templates` case-sensitivity bug** — the installer read
29
+ lowercase `docs/references`/`templates`, which "worked" on case-insensitive macOS but
30
+ silently missed on case-sensitive Linux/npm (manifest showed `REFERENCES 0 / TEMPLATES 0`).
31
+ Installer now reads the exact on-disk case and both dirs are allowlisted.
32
+
33
+ ### Added
34
+
35
+ - **`tests/packaging-allowlist.test.js`** — packs the real tarball (`npm pack --dry-run
36
+ --json`) and asserts commands, skills, subagents, entry files, the full `.mindforge/`
37
+ framework, and `.planning/` templates all ship, while runtime DBs/telemetry do not.
38
+ Proven to fail under the broken v11.3.0 allowlist. Skips loudly if npm is unavailable.
39
+
@@ -0,0 +1,38 @@
1
+ # Changelog
2
+
3
+ ## [11.4.0] - 2026-06-06 — Claude Code plugin distribution
4
+
5
+ MindForge is now installable as a native **Claude Code plugin** from a marketplace, in
6
+ addition to the `npx mindforge-cc` installer. This release ships the plugin tooling so
7
+ both the GitHub plugin channel and the npm tarball stay coherent.
8
+
9
+ ### Added
10
+
11
+ - **Plugin marketplace** (`.claude-plugin/marketplace.json` at the repo root) — users run
12
+ `/plugin marketplace add sairam0424/MindForge` then `/plugin install mindforge@mindforge`.
13
+ Lists 11 plugins: the comprehensive `mindforge` plugin + 10 à-la-carte subagent packs.
14
+ - **Comprehensive `mindforge` plugin** (`plugins/mindforge/`) bundling the full surface:
15
+ 174 commands, 154 subagents, 73 skills + a synthesized `mindforge-protocol` skill (the
16
+ CLAUDE.md operating directive, since a plugin-root CLAUDE.md isn't loaded as context),
17
+ and governance hooks (translated to Claude `PreToolUse`/`PostToolUse` events with
18
+ `${CLAUDE_PLUGIN_ROOT}`-relative paths).
19
+ - **Bundled MindForge MCP server** — a self-contained esbuild single-file build
20
+ (`mcp/dist/index.js`, all deps inlined, no runtime `node_modules`) exposing 7 tools over
21
+ stdio: `mindforge_health`, `mindforge_status`, `mindforge_memory_query`,
22
+ `mindforge_memory_stats`, `mindforge_memory_find_related`, `mindforge_audit_log`
23
+ (read-only), and append-only `mindforge_memory_remember`. Scoped to the user's project
24
+ via `${CLAUDE_PROJECT_DIR}`; degrades gracefully when MindForge isn't set up.
25
+ - **Generators** (single source of truth, drift-guarded): `build-plugin-marketplace.js`,
26
+ `build-subagent-plugins.js`, `build-mindforge-plugin.js`, `vendor-sdk-into-mcp.js`,
27
+ `fix-command-frontmatter.js`; new `mcp-server/` package with esbuild build.
28
+ - **`tests/plugin-packaging.test.js`** (in `npm test`) — guards the generated plugin tree,
29
+ frontmatter validity, and MCP-bundle self-containment.
30
+
31
+ ### Fixed
32
+
33
+ - Quoted YAML-unsafe `name`/`description` frontmatter across commands/agents/skills that
34
+ the plugin validator flagged (leading `-`/`@`, embedded `: `, trailing `:`) — these
35
+ silently loaded empty metadata. The npx installer inherits the fix.
36
+ - Per-category subagent `plugin.json` `agents[]` now derived from on-disk files, fixing
37
+ stale bare names for the 16 collision-renamed (`-cc`) agents.
38
+
@@ -0,0 +1,77 @@
1
+ # Changelog
2
+
3
+ ## [11.5.0] - 2026-06-11 — Governance hardening + autonomous-engine repair (Waves 4–7)
4
+
5
+ This release bundles four waves of work: orchestration primitives, an **inert** manifest
6
+ engine + the new instinct CLI + GAN harness personas, governance/security hardening, and a
7
+ repair that makes the autonomous engine (`/mindforge:auto`) actually functional. Several
8
+ items ship deliberately **inert** (scaffolding present, not wired into any live path) and
9
+ are flagged as such below — they introduce **no behavior change yet**.
10
+
11
+ ### Added
12
+
13
+ - **Instinct CLI** (`/mindforge:instinct`, `bin/learning/instinct-cli.js`) — deterministic,
14
+ no-LLM management of the JSONL instinct store: `list`, `export`, `import`,
15
+ `promote-candidates` (list + flag), and `prune`.
16
+ - **Typed Inter-Agent Message Protocol** (`bin/autonomous/handoff-schema.js`) — five message
17
+ kinds (`task_handoff`, `query`, `response`, `completed`, `conflict`) with priority levels
18
+ (`low`/`normal`/`high`/`critical`) and message validation. Internal orchestration primitive.
19
+ - **Manifest-driven install resolver** (`bin/installer/install-manifests.js`,
20
+ `.mindforge/manifests/install-*.json`) — profile-to-module expansion and dependency
21
+ detection. Ships **INERT**: the adapter wiring it into `bin/installer-core.js`'s live
22
+ `install()` path is deferred to a future PR. No behavior change.
23
+ - **GAN-style harness personas** (`.mindforge/personas/gan-evaluator.md`, `gan-generator.md`,
24
+ `gan-planner.md`) — fully scoped and documented. Ships **INERT**: not wired to any live
25
+ command or automated workflow. No behavior change.
26
+ - **Governance test coverage** — `tests/trust-verifier.test.js` (7 tests) and
27
+ `tests/rbac-manager.test.js` (8 tests) lock the fail-closed contracts for future
28
+ safety-critical governance changes.
29
+
30
+ ### Fixed
31
+
32
+ - **SSRF import-URL guard** (`bin/learning/lib/ssrf-guard.js`) — closed an IPv6 link-local
33
+ bypass (`fe81`–`fe8f` reachable via string-prefix check) and a symlink path-traversal
34
+ bypass, using numeric bitmask validation and canonical-path checking before system-dir
35
+ validation.
36
+ - **Federated EIS sync** (`bin/memory/eis-client.js`) — `getAuthHeader` no longer throws on
37
+ every call; it now registers a node identity via `ZTAI.registerAgent` and signs with
38
+ `ZTAI.signData`, restoring sync to non-localhost EIS endpoints.
39
+ - **RBAC tier elevation** (`bin/governance/rbac-manager.js`) — `getRolesByTier` now fails
40
+ safely for unregistered agents (no thrown exception) and resolves agent tier via the
41
+ correct ZTAI API.
42
+ - **Autonomous engine — wave crash** (`bin/autonomous/auto-runner.js`) — replaced ZTAI
43
+ singleton misuse (`getIdentity()`, non-existent) with `_getRunnerIdentity()` using the
44
+ real `registerAgent` API; `/mindforge:auto` no longer crashes on every wave.
45
+ - **Autonomous policy gate — fail-open** (`bin/autonomous/auto-runner.js`) — the async
46
+ policy verdict is now `await`ed (`this.policyEngine.evaluate(intent)`); the per-wave gate
47
+ previously always allowed.
48
+ - **Autonomous engine — fail-closed identity** (`bin/autonomous/auto-runner.js`) — if runner
49
+ identity cannot be established, the policy gate now denies and audits (`auto_mode_denied`)
50
+ instead of proceeding ungoverned.
51
+
52
+ ### Changed
53
+
54
+ - **Instinct store schema** (`.mindforge/engine/instincts/instinct-schema.md`) — added
55
+ `project_id` (stable scope key) and `source` (`auto-capture`/`manual`/`imported`/
56
+ `observer`), plus origin-based confidence scoring: auto-capture starts at `0.3`, manual
57
+ at `0.7`.
58
+ - **Cost-routing shadow mode** (`bin/revops/router-steering-v2.js`) — arbitrage steering now
59
+ respects `cost_routing.shadow_mode` (default `true`); in observe-only mode `steer()`
60
+ returns `{ shadow, authoritative: false }` with SHADOW vs LIVE logging.
61
+
62
+ ### Security
63
+
64
+ - **Tier-3 approvals now fail closed** (`bin/governance/approve.js`) — approvals require GPG
65
+ verification and **throw before writing any record** when no GPG key is configured, unless
66
+ `MINDFORGE_ALLOW_UNVERIFIED_APPROVAL=1` is set; unverified approvals are marked
67
+ `verified: false`.
68
+ - **Persona supply-chain scan** (`scripts/ci/validate-assets.js`) — persona asset validation
69
+ now detects dangerous invisible unicode (zero-width, bidi overrides, Unicode tags) across
70
+ `.mindforge/personas` to prevent ASCII-smuggling injection.
71
+ - **Destructive-command detector** (`bin/security/trust-boundaries.js`) — `normalizeShell`
72
+ now strips bare `#` tokens after quote-stripping, blocking quoted-hash evasion (e.g.
73
+ `rm "#" -rf /`).
74
+ - **Instinct import port allowlist** (`bin/learning/lib/ssrf-guard.js`) — `validateImportUrl`
75
+ enforces an `ALLOWED_IMPORT_PORTS` allowlist (`{'', '443'}`), blocking attempts to reach
76
+ internal services (Redis `:6379`, Mongo `:27017`, etc.) on otherwise-allowed public hosts.
77
+