mindforge-cc 3.0.0 → 4.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.agent/CLAUDE.md +50 -545
- package/.claude/CLAUDE.md +50 -545
- package/.mindforge/audit/AUDIT-SCHEMA.md +20 -1
- package/.mindforge/engine/persona-factory.md +45 -0
- package/.mindforge/engine/swarm-controller.md +59 -0
- package/.mindforge/engine/wave-executor.md +104 -54
- package/.mindforge/memory/pattern-library.jsonl +1 -2
- package/.mindforge/personas/swarm-templates.json +118 -0
- package/.planning/ROI.jsonl +2 -0
- package/CHANGELOG.md +63 -0
- package/MINDFORGE.md +75 -106
- package/README.md +31 -13
- package/RELEASENOTES.md +29 -24
- package/bin/engine/feedback-loop.js +71 -0
- package/bin/engine/nexus-tracer.js +150 -0
- package/bin/engine/temporal-hindsight.js +88 -0
- package/bin/governance/trust-verifier.js +81 -0
- package/bin/governance/ztai-archiver.js +104 -0
- package/bin/governance/ztai-manager.js +203 -0
- package/bin/memory/ghost-pattern-detector.js +69 -0
- package/bin/memory/semantic-hub.js +104 -0
- package/bin/models/finops-hub.js +79 -0
- package/bin/models/model-broker.js +110 -0
- package/docs/INTELLIGENCE-MESH.md +32 -0
- package/docs/PERSONAS.md +63 -0
- package/docs/architecture/NEXUS-DASHBOARD.md +35 -0
- package/docs/architecture/V4-SWARM-MESH.md +77 -0
- package/docs/feature-dashboard.md +6 -1
- package/docs/governance-guide.md +27 -18
- package/docs/references/audit-events.md +6 -0
- package/docs/security/SECURITY.md +15 -4
- package/docs/security/ZTAI-OVERVIEW.md +37 -0
- package/docs/usp-features.md +76 -5
- package/package.json +1 -1
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# Zero-Trust Agentic Identity (ZTAI) Overview
|
|
2
|
+
|
|
3
|
+
MindForge v4.2 introduces **ZTAI Beast Mode**, an enterprise-grade identity layer that ensures every agent action is cryptographically signed and non-repudiable.
|
|
4
|
+
|
|
5
|
+
## 1. Asymmetric Identity Model
|
|
6
|
+
Every MindForge persona in the 32+ agent library is assigned a unique asymmetric key pair (Ed25519) upon project initialization or agent spawning.
|
|
7
|
+
|
|
8
|
+
- **Private Key**: Stored securely in the local `.mindforge/identity` vault (never exposed).
|
|
9
|
+
- **Public Key / DID**: Represented as a **Decentralized Identifier (DID)** in the format `did:mf:<key-fingerprint>`.
|
|
10
|
+
|
|
11
|
+
## 2. Trust Tiers & Signing Requirements
|
|
12
|
+
MindForge enforces tiered signing based on the risk level of the persona's actions.
|
|
13
|
+
|
|
14
|
+
| Tier | Persona Examples | Signing Tech | Integrity Proof |
|
|
15
|
+
| :--- | :--- | :--- | :--- |
|
|
16
|
+
| **T0** | `mf-researcher`, `mf-query` | None | Audit log entry only. |
|
|
17
|
+
| **T1** | `mf-executor`, `mf-coder` | Ed25519 (Software) | Signed JSON payload. |
|
|
18
|
+
| **T2** | `security-auditor`, `ui-specialist` | Ed25519 (Software) | Signed Block + Peer Review. |
|
|
19
|
+
| **T3** | `mf-planner`, `system-architect` | **Secure Enclave (HSM)** | Enclave-attested signature. |
|
|
20
|
+
|
|
21
|
+
*Note: T3 agents utilize a simulated hardware-secured enclave (HSM) to ensure principal-level accountability.*
|
|
22
|
+
|
|
23
|
+
## 3. Non-Repudiable Audit Manifests
|
|
24
|
+
The `ZTAIArchiver` generates high-fidelity integrity proofs for the session history.
|
|
25
|
+
|
|
26
|
+
- **Merkle-Root Chain**: Every 50 audit entries trigger the generation of a Merkle-root.
|
|
27
|
+
- **Manifest Finalization**: The cumulative root of all audit entries is signed by the **Principal Agent (T3)**.
|
|
28
|
+
- **Tamper Detection**: Any modification to the `AUDIT.jsonl` file will invalidate the Merkle-proof, triggering an immediate security alert.
|
|
29
|
+
|
|
30
|
+
## 4. Key Provider Abstraction
|
|
31
|
+
The `ZTAIManager` uses a pluggable `KeyProvider` architecture:
|
|
32
|
+
- `FileSystemProvider`: Standard key storage for T1/T2 agents.
|
|
33
|
+
- `SecureEnclaveProvider`: Simulates hardware-backed signing for T3 agents.
|
|
34
|
+
- `KMSProvider` (Future): Integration with AWS/GCP/Azure Key Management Services.
|
|
35
|
+
|
|
36
|
+
## 5. Governance Integration
|
|
37
|
+
ZTAI identities are verified during the `/mindforge:verify-phase` and `/mindforge:ship` processes. High-tier changes will be BLOCKED if the cryptographic signatures are missing or invalid.
|
package/docs/usp-features.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# MindForge
|
|
1
|
+
# MindForge v4.2.5 — Unique Selling Points, Features, and Best Practices (v4.2.5)
|
|
2
2
|
|
|
3
|
-
This document summarizes what makes MindForge
|
|
3
|
+
This document summarizes what makes MindForge v4.1.0 distinct, what features
|
|
4
4
|
are included in the official release, and how to use them effectively.
|
|
5
5
|
|
|
6
6
|
---
|
|
@@ -58,6 +58,18 @@ are included in the official release, and how to use them effectively.
|
|
|
58
58
|
16. **Temporal Vision (v3)**
|
|
59
59
|
- Full-fidelity history navigation, hindsight injection, and automated state repair across the execution wave.
|
|
60
60
|
|
|
61
|
+
17. **Dynamic Swarm Orchestration (v4)**
|
|
62
|
+
- Parallel "Agentic Mesh" with shared state (`SWARM-STATE.json`) and leader-led synthesis of specialist outcomes.
|
|
63
|
+
|
|
64
|
+
18. **Zero-Trust Agentic Identity "Beast Mode" (v4.2)**
|
|
65
|
+
- Non-repudiable audit trails signed by unique Decentralized Identifiers (DIDs) for every swarm action. Tier 3 agents use simulated **Secure Enclave (HSM)** signing.
|
|
66
|
+
|
|
67
|
+
19. **MindForge Nexus: Agentic Reasoning Tracing (v4.1)**
|
|
68
|
+
- High-fidelity **ART** spans embedded in the execution engine, providing deep visibility into agentic "thought chains" and parallel mesh reasoning.
|
|
69
|
+
|
|
70
|
+
20. **Global Intelligence Mesh (v4.2)**
|
|
71
|
+
- Cross-repository knowledge sharing via the **Semantic Hub**. Proactive **Ghost Pattern Detection** identifies and prevents repeating past organizational failures.
|
|
72
|
+
|
|
61
73
|
---
|
|
62
74
|
|
|
63
75
|
## Feature Set (v2.0.0)
|
|
@@ -247,6 +259,67 @@ preserving scope (local vs global).
|
|
|
247
259
|
|
|
248
260
|
---
|
|
249
261
|
|
|
262
|
+
### 21. Dynamic Swarm Mesh (v4)
|
|
263
|
+
**What it does:** Orchestrates parallel specialist clusters (e.g., Security, UI, Data) with automated state coordination.
|
|
264
|
+
|
|
265
|
+
**How to use:**
|
|
266
|
+
```bash
|
|
267
|
+
/mindforge:swarm spawn --template [NAME]
|
|
268
|
+
/mindforge:swarm status --mesh
|
|
269
|
+
```
|
|
270
|
+
|
|
271
|
+
---
|
|
272
|
+
|
|
273
|
+
### 22. ZTAI Governance & Beast Mode (v4.2)
|
|
274
|
+
**What it does:** Enforces cryptographic signing and trust-tier validation for all autonomous agent actions. Tier 3 agents utilize simulated Secure Enclaves for principal-level non-repudiation.
|
|
275
|
+
|
|
276
|
+
**How to use:**
|
|
277
|
+
```bash
|
|
278
|
+
/mindforge:identity verify [AGENT_ID]
|
|
279
|
+
/mindforge:identity sign --did
|
|
280
|
+
/mindforge:identity audit --manifest # Generates Merkle-root integrity proof
|
|
281
|
+
```
|
|
282
|
+
|
|
283
|
+
---
|
|
284
|
+
|
|
285
|
+
### 23. Global Intelligence Mesh (v4.2)
|
|
286
|
+
**What it does:** Synchronizes local repo memory with a global organizational store. Includes Ghost Pattern Detection to flag architectural anti-patterns from past failures.
|
|
287
|
+
|
|
288
|
+
**How to use:**
|
|
289
|
+
```bash
|
|
290
|
+
/mindforge:memory sync --global
|
|
291
|
+
/mindforge:memory status --mesh
|
|
292
|
+
/mindforge:plan-phase --detect-ghosts # Automated during planning
|
|
293
|
+
```
|
|
294
|
+
---
|
|
295
|
+
|
|
296
|
+
### 24. Autonomous FinOps Hub (v4.3)
|
|
297
|
+
**What it does:** Enterprise-grade economics engine that treats compute as a first-class resource. The `ModelBroker` utilizes a **Confidence-to-Cost (C2C)** engine to dynamically route tasks based on complexity and trust tier.
|
|
298
|
+
|
|
299
|
+
**How to use:**
|
|
300
|
+
```bash
|
|
301
|
+
/mindforge:finops status # View consumption and budget profile
|
|
302
|
+
/mindforge:costs --roi # Detailed Agentic ROI analysis
|
|
303
|
+
/mindforge:finops budget 500 # Set project-level budget ($500)
|
|
304
|
+
```
|
|
305
|
+
|
|
306
|
+
---
|
|
307
|
+
|
|
308
|
+
### 25. Proactive Equilibrium (Self-Healing) (v4.3)
|
|
309
|
+
**What it does:** Achieves autonomous reliability via a `WaveFeedbackLoop`. If execution divergence exceeds 20%, the system performs **Temporal Hindsight** analysis and automatically rewrites the plan to recover.
|
|
310
|
+
|
|
311
|
+
**How to use:**
|
|
312
|
+
- Automated: Triggers during `/mindforge:execute-phase` when divergence is detected.
|
|
313
|
+
- Manual: `/mindforge:temporal analyze` to run RCA on the last wave.
|
|
314
|
+
**What it does:** High-fidelity Agentic Reasoning Tracing (ART) for the agentic mesh. Logs spans, parent-trace IDs, and granular reasoning traces.
|
|
315
|
+
|
|
316
|
+
**How to use:**
|
|
317
|
+
- Automated: Every wave/task execution triggers Nexus Tracer spans.
|
|
318
|
+
- Manual: Query `.planning/AUDIT.jsonl` for `trace_id` and `span_id` chains.
|
|
319
|
+
- Dashboard: Real-time visualization of mesh traces and reasoning heatmaps.
|
|
320
|
+
|
|
321
|
+
---
|
|
322
|
+
|
|
250
323
|
### 15. SDK (TypeScript)
|
|
251
324
|
**What it does:** Programmatic access to health, audit log, event stream, and commands.
|
|
252
325
|
|
|
@@ -304,6 +377,4 @@ const report = await client.health();
|
|
|
304
377
|
---
|
|
305
378
|
|
|
306
379
|
## Summary
|
|
307
|
-
MindForge
|
|
308
|
-
single workflow engine that works across 6 major AI runtimes. Its core
|
|
309
|
-
value is consistent, repeatable quality in long‑running AI development sessions.
|
|
380
|
+
MindForge v4.3.0 combines governance, observability, and autonomous execution rigor with **enterprise-grade economics (FinOps)** and **self-healing reliability**. Its core value is providing a non-repudiable, cost-optimized, and resilient AI development engine for the most demanding software projects.
|