mindforge-cc 5.10.0 → 6.1.0-alpha

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 (48) hide show
  1. package/.agent/mindforge/health.md +6 -0
  2. package/.agent/mindforge/help.md +6 -0
  3. package/.agent/mindforge/security-scan.md +6 -1
  4. package/.agent/mindforge/status.md +10 -5
  5. package/.claude/CLAUDE.md +14 -12
  6. package/.mindforge/engine/integrity.json +12 -0
  7. package/.mindforge/governance/policies/sovereign-default.json +16 -0
  8. package/.mindforge/org/skills/MANIFEST.md +10 -34
  9. package/.planning/RISK-AUDIT.jsonl +48 -0
  10. package/CHANGELOG.md +126 -19
  11. package/MINDFORGE.md +8 -5
  12. package/README.md +22 -3
  13. package/RELEASENOTES.md +19 -1
  14. package/bin/autonomous/auto-runner.js +14 -0
  15. package/bin/autonomous/intent-harvester.js +80 -0
  16. package/bin/autonomous/mesh-self-healer.js +67 -0
  17. package/bin/engine/logic-drift-detector.js +97 -0
  18. package/bin/engine/nexus-tracer.js +24 -4
  19. package/bin/engine/remediation-engine.js +72 -0
  20. package/bin/governance/impact-analyzer.js +75 -15
  21. package/bin/governance/policy-engine.js +120 -45
  22. package/bin/governance/quantum-crypto.js +90 -0
  23. package/bin/governance/ztai-manager.js +37 -1
  24. package/bin/installer-core.js +38 -7
  25. package/bin/mindforge-cli.js +30 -0
  26. package/bin/revops/market-evaluator.js +79 -0
  27. package/bin/revops/roi-engine.js +5 -0
  28. package/bin/revops/router-steering-v2.js +73 -0
  29. package/bin/wizard/theme.js +5 -1
  30. package/docs/CAPABILITIES-MANIFEST.md +64 -0
  31. package/docs/INTELLIGENCE-MESH.md +20 -32
  32. package/docs/MIND-FORGE-REFERENCE-V6.md +96 -0
  33. package/docs/architecture/README.md +4 -4
  34. package/docs/architecture/V5-ENTERPRISE.md +26 -12
  35. package/docs/architecture/V6-SOVEREIGN.md +43 -0
  36. package/docs/commands-reference.md +1 -1
  37. package/docs/feature-dashboard.md +9 -3
  38. package/docs/governance-guide.md +78 -48
  39. package/docs/registry/AGENTS.md +37 -0
  40. package/docs/registry/COMMANDS.md +87 -0
  41. package/docs/registry/HOOKS.md +38 -0
  42. package/docs/registry/PERSONAS.md +64 -0
  43. package/docs/registry/README.md +27 -0
  44. package/docs/registry/SKILLS.md +142 -0
  45. package/docs/registry/WORKFLOWS.md +72 -0
  46. package/docs/user-guide.md +36 -6
  47. package/docs/usp-features.md +63 -295
  48. package/package.json +2 -2
@@ -15,6 +15,8 @@ const Theme = {
15
15
  dim: (s) => (TTY ? `\x1b[2m${s}\x1b[0m` : s),
16
16
  bold: (s) => (TTY ? `\x1b[1m${s}\x1b[0m` : s),
17
17
  italic: (s) => (TTY ? `\x1b[3m${s}\x1b[0m` : s),
18
+ magenta: (s) => (TTY ? `\x1b[35m${s}\x1b[0m` : s), // Quantum Security
19
+ orange: (s) => (TTY ? `\x1b[38;5;208m${s}\x1b[0m` : s), // Semantic Homing
18
20
  },
19
21
 
20
22
  chars: {
@@ -59,11 +61,13 @@ const Theme = {
59
61
  */
60
62
  printBrandManifest() {
61
63
  console.log(` ${this.colors.dim('│')}`);
62
- console.log(` ${this.colors.dim('│')} ${this.colors.green('🎉 V2.3.0 IS HERE!')} Welcome to MindForge V2!`);
64
+ console.log(` ${this.colors.dim('│')} ${this.colors.magenta('🛡️ SOVEREIGN INTELLIGENCE v6.2.0-alpha')} PQAS & Proactive Homing Enabled`);
63
65
  console.log(` ${this.colors.dim('│')}`);
64
66
  console.log(` ${this.colors.dim('│')} ${this.colors.bold('THE PLATFORM VISION:')}`);
65
67
  console.log(` ${this.colors.dim('│')} - Unified Enterprise Agentic Ecosystem`);
66
68
  console.log(` ${this.colors.dim('│')} - Modular Skills & Persona Architecture`);
69
+ // Added Sovereign Intelligence as a core pillar
70
+ console.log(` ${this.colors.dim('│')} - ${this.colors.magenta('Sovereign Intelligence')}: PQ-Safe & Proactive Swarms`);
67
71
  console.log(` ${this.colors.dim('│')} - Autonomous Governance & Self-Healing`);
68
72
  console.log(` ${this.colors.dim('│')}`);
69
73
  console.log(` ${this.colors.dim('│')} ${this.colors.yellow('🌟 100% FREE & OPEN SOURCE')}`);
@@ -0,0 +1,64 @@
1
+ # MindForge v6.2.0-alpha — Capabilities Manifest
2
+
3
+ This manifest provides a line-item inventory of every engine, protocol, and feature available in the MindForge "Beast Mode" installation.
4
+
5
+ ## 🛡️ 1. Sovereign Intelligence (Pillars IX-XII)
6
+ The latest advancement in agentic security and proactivity.
7
+ - **Post-Quantum Agentic Security (PQAS)**:
8
+ - `QuantumCrypto`: Lattice-based (Dilithium-5) signature simulation for framework integrity.
9
+ - `ZK-Audit`: Zero-Knowledge proof generation for policy-compliant reasoning.
10
+ - `Integrity-Verify`: Constant-time manifest verification of framework files.
11
+ - **Proactive Homing**:
12
+ - `IntentHarvester`: Idle-state task claiming from the Intelligence Mesh.
13
+ - `MeshSelfHealer`: Peer-to-peer drift detection and recovery logic.
14
+ - `DriftSense`: Repetition and density-aware loop detection (NDR).
15
+
16
+ ## 🌊 2. Autonomous Swarms (Nexus Engine)
17
+ The core asynchronous execution environment.
18
+ - **NexusTracer**: High-fidelity, async-first reasoning capture and tracing.
19
+ - **WaveExecutor**: Parallel, dependency-aware task execution with prioritized queuing.
20
+ - **TemporalProtocols**: Time-travel debugging, state versioning, and hindsight injection.
21
+ - **ContextInjector**: Dynamic prompt-injection based on environmental signals.
22
+ - **ShardController**: Support for distributed project state across multiple workspaces.
23
+
24
+ ## ⚖️ 3. Enterprise Governance (AgRevOps)
25
+ Tiered security and value attribution for large-scale operations.
26
+ - **Tiered Compliance Gates**:
27
+ - **Tier 1 (Core)**: Standard operations.
28
+ - **Tier 2 (Sensitive)**: Requires impact analysis.
29
+ - **Tier 3 (High-Impact)**: Requires executive/biometric approval (>95 blast radius).
30
+ - **AgRevOps ROI Engine**:
31
+ - `MarketEvaluator`: Real-time token arbitrage and model steering.
32
+ - `ROIAuditor`: Automated value attribution for completed waves.
33
+ - **RBAC Manager**: Role-Based Access Control for persona identities and skill execution.
34
+
35
+ ## 🧠 4. Memory & Knowledge Hub
36
+ The semantic foundation for long-term intelligence.
37
+ - **Global Knowledge Graph**: Multi-project semantic index of decisions and patterns.
38
+ - **SemanticHub**: Federated memory synchronization across distributed enclaves.
39
+ - **GhostPatternDetector**: Identifies emerging antipatterns and optimized workflows autonomously.
40
+ - **SessionMemoryLoader**: Fast-start context restoration from previous sessions.
41
+
42
+ ## 🤝 5. Enterprise Integrations
43
+ Native adapters for the modern engineering stack.
44
+ - **Jira Sync**: Bidirectional issue and milestone synchronization.
45
+ - **Confluence Sync**: Automated architecture and roadmap documentation mirroring.
46
+ - **Slack/Discord Hubs**: Real-time event notifications and approval requests.
47
+ - **GitHub Actions Support**: CI-integrated validation and PR review pipelines.
48
+
49
+ ## 👤 6. Persona Library (30+ Identities)
50
+ Specialized agent essences available via `node bin/spawn-agent.js`.
51
+ - **Strategic**: `mf-planner`, `architect`, `tech-writer`.
52
+ - **Implementation**: `mf-executor`, `developer`, `ui-checker`.
53
+ - **Quality**: `mf-reviewer`, `nyquist-auditor`, `security-reviewer`.
54
+ - **Specialized**: `debug-specialist`, `research-synthesizer`, `user-profiler`.
55
+
56
+ ## 🛠 7. CLI Command Suite (64+ Commands)
57
+ Comprehensive control via `mindforge-cli.js`.
58
+ - **Strategic**: `init-project`, `milestone`, `plan-phase`, `ship`.
59
+ - **Operational**: `auto`, `headless`, `steer`, `stuck-monitor`.
60
+ - **Governance**: `security-scan`, `approve`, `audit`, `metrics`, `tokens`.
61
+ - **Sovereign**: `harvest`, `self-heal`, `quantum-verify`.
62
+
63
+ ---
64
+ *MindForge v6.2.0-alpha "Beast Mode" — Empowering the Autonomous Enterprise.*
@@ -1,49 +1,37 @@
1
- # MindForge Federated Intelligence Mesh (FIM) (v5.6.0)
2
- MindForge v5.6.0 — Sentinel-Aware Distributed Intelligence
1
+ # MindForge Federated Intelligence Mesh (FIM) (v6.2.0-alpha)
2
+ MindForge v6.2.0-alphaSovereign & Proactive Distributed Intelligence
3
3
 
4
4
  ## 1. Overview
5
- The **Federated Intelligence Mesh (FIM)** is the enterprise-grade evolution of the Global Intelligence Mesh. It transitions MindForge from machine-local memory to a distributed organizational intelligence network. Using a central **Enterprise Intelligence Service (EIS)**, FIM enables seamless, authenticated knowledge synchronization across all agents and projects in the enterprise.
5
+ The **Federated Intelligence Mesh (FIM)** is the enterprise-grade evolution of the Global Intelligence Mesh. It transitions MindForge from machine-local memory to a distributed organizational intelligence network. In v6.2.0, FIM evolves from a reactive knowledge store to a **Proactive Homing** mesh where agents actively hunt for intents and collaboratively heal reasoning drift.
6
6
 
7
7
  ## 2. Architecture
8
- The V5 mesh is built on three core pillars residing in `bin/memory/`:
8
+ The V6 mesh is built on four core pillars:
9
9
 
10
10
  ### A. EIS Client (`eis-client.js`)
11
11
  - **Role**: Secure, authenticated communicator for the central intelligence hub.
12
- - **Hardening**: Implements **ZTAI-signed authentication headers**. Every request is cryptographically tied to a verified agent identity (DID).
13
- - **Communication**: REST-based push/pull protocols with integrity-verified payloads.
12
+ - **Hardening**: Implements **ZTAI-signed authentication headers** with **Post-Quantum (PQAS)** signature support for Tier 4.
14
13
 
15
14
  ### B. Federated Sync (`federated-sync.js`)
16
- - **Role**: High-performance synchronization engine between local stores and the organizational mesh.
17
- - **Delta Sync**: Tracks the `last_sync` timestamp to only pull new organizational insights, significantly reducing latency and compute costs.
18
- - **Conflict Resolution**: Uses **Hybrid Semantic Synthesis** (Pillar I v5.2.0).
19
- - **Similarity > 0.9**: Near-identical; auto-resolve via **Last-Write-Wins (LWW)**.
20
- - **0.75 - 0.9**: Semantic Overlap; triggers **Autonomous ADS Merging**.
21
- - **0.6 - 0.75**: Conflict; triggers **Nexus Handover (DHH)** for human steering.
22
- - **< 0.6**: Topic Collision; isolates entries into unique IDs to prevent data loss.
23
-
24
- ### C. Knowledge Graph Bridge (`knowledge-graph.js`)
25
- - **Role**: Unified memory interface that resolves both local project nodes and remote federated nodes.
26
- - **Hybrid Traversal**: BFS/DFS algorithms that seamlessly traverse edges spanning across the local-to-global boundary.
15
+ - **Role**: High-performance synchronization engine.
16
+ - **Proactive Homing (v6.2.0)**: Idle agents now use the `IntentHarvester` to proactively pull unassigned tasks from the mesh, reducing orchestrator overhead and latency.
27
17
 
28
- ### D. Predictive Reliability Integration (v5.5.0)
29
- The FIM now monitors the "intelligence flux" of the shared mesh using **Reasoning Entropy Scoring (RES)**.
30
- - **Mesh Loop Prevention**: Prevents agents from sharing circular or stagnant reasoning patterns back to the central hub.
31
- - **Steering Vector Sync**: High-confidence steering vectors generated by `TemporalHindsight` are shared across the mesh as "Sovereign Design Patterns" to proactively fix common agentic failure modes.
18
+ ### C. Mesh Self-Healer (`mesh-self-healer.js`)
19
+ - **Role**: Peer-to-peer collaborative recovery.
20
+ - **Collaborative Reasoning**: When a mesh node detects a reasoning drift score > 80, peer agents automatically "home in" on the node via the mesh to provide adversarial synthesis and recovery vectors.
32
21
 
33
- ### E. Sentinel-Aware Mesh Trust (v5.6.0)
34
- The mesh enforces **Binary Runtime Attestation** for all shared skills.
35
- - **Trusted Knowledge Exchange**: Only knowledge generated by agents with a verified Tier 3 DID and a non-tampered skill stack is accepted into the global mesh.
36
- - **ZTS-Hash Verification**: Every piece of federated intelligence is linked to the SHA-256 hash of the skill that produced it.
22
+ ### D. Knowledge Graph Bridge (`knowledge-graph.js`)
23
+ - **Role**: Unified memory interface that resolves both local project nodes and remote federated nodes.
37
24
 
38
25
  ## 3. Workflow & Provenance
39
- 1. **Verified Capture**: High-confidence findings (>0.8 score) are automatically prepared for mesh promotion.
40
- 2. **Identity-Locked Push**: The `FederatedSync` pushes these findings to the EIS, signed by the originating agent's ZTAI DID.
41
- 3. **Organizational Delta Pull**: Subagents starting new tasks perform a delta-pull to ingest the latest organizational "Ghost Patterns" and success-verified designs.
26
+ 1. **Intent Harvesting**: The `IntentHarvester` proactively claims tasks from the FIM based on skill-affinity.
27
+ 2. **Verified Capture**: High-confidence findings are automatically prepared for mesh promotion.
28
+ 3. **Identity-Locked Push**: The `FederatedSync` pushes findings to the EIS, signed by the agent's ZTAI/PQAS DID.
29
+ 4. **Autonomous Healing**: Peer agents proactively reconcile drifting waves in the mesh.
42
30
 
43
31
  ## 4. Enterprise Value
44
- - **Verifiable Intelligence**: All knowledge in the mesh has an immutable audit trail back to the agent that discovered it.
45
- - **Global Self-Healing**: A security vulnerability found in project A becomes a proactive guardrail in project B within seconds.
46
- - **Elimination of Redundancy**: Multi-thousand-token research chains are executed once and shared universally across the mesh.
32
+ - **Zero-Latency Orchestration**: Proactive task claiming eliminates idle time between waves.
33
+ - **Quantum-Safe Trust**: Modern lattice-based signatures protect the mesh from future cryptographic threats.
34
+ - **Distributed Resilience**: The mesh is a self-healing engine where every agent monitors the health of the whole.
47
35
 
48
36
  ---
49
- *Status: V5.2.0 Semantic Consensus Implemented & Verified (2026-03-28)*
37
+ *Status: V6.2.0 Sovereign Pillars XI & XII Implemented & Verified (2026-03-29)*
@@ -0,0 +1,96 @@
1
+ # MindForge v6.2.0-alpha — Comprehensive Reference Guide
2
+
3
+ This is the definitive "Beast Mode" manual for the MindForge ecosystem. It details every command, persona, skill, workflow, and automation hook available in the v6.2.0-alpha distribution.
4
+
5
+ ---
6
+
7
+ ## 🛠 Chapter 1: Command Suite (64+ Core Commands)
8
+ Commands can be invoked directly via the Agent or via the `node bin/mindforge-cli.js` router.
9
+
10
+ ### 🛡️ Strategic & Governance Commands
11
+ | Command | Description | Invocation | How to Test |
12
+ | :--- | :--- | :--- | :--- |
13
+ | `/mindforge:security-scan` | OWASP Top 10 + Sovereign Integrity check. | `/mindforge:security-scan [path] --deep` | Create a test file with an API key and run the scan. |
14
+ | `/mindforge:status` | Real-time project and Sovereign engine health. | `/mindforge:status` | Verify the status reports "Sovereign: Manifested". |
15
+ | `/mindforge:approve` | Generate cryptographic signature for Tier 3 gates. | `/mindforge:approve` | Run on a change with >95 impact score. |
16
+ | `/mindforge:audit` | Query historical reasoning and compliance logs. | `/mindforge:audit --phase 1` | Check `AUDIT.jsonl` for the output. |
17
+ | `/mindforge:health` | 7-pillar diagnostic of framework integrity. | `/mindforge:health` | Verify all modules report as "HEALTHY". |
18
+ | `/mindforge:tokens` | Analyze model usage costs and efficiency. | `/mindforge:tokens --report` | Check for the ROI calculation in the output. |
19
+
20
+ ### 🚀 Operational & Execution Commands
21
+ | Command | Description | Invocation | How to Test |
22
+ | :--- | :--- | :--- | :--- |
23
+ | `/mindforge:auto` | Autonomous execution engine (Wave mode). | `/mindforge:auto` | Run on a planned phase with 3+ independent tasks. |
24
+ | `/mindforge:steer` | Inject mid-execution guidance into the swarm. | `/mindforge:steer [instruction]` | Use during a long-running `/mindforge:auto` session. |
25
+ | `/mindforge:headless` | Run MindForge in background/daemon mode. | `/mindforge:headless` | Check `bin/autonomous/headless.js` pid. |
26
+ | `/mindforge:ship` | Multi-adapter release and PR pipeline. | `/mindforge:ship` | Run after a phase is verified (UAT pass). |
27
+
28
+ ---
29
+
30
+ ## 👤 Chapter 2: Specialized Personas (25+ Essence Profiles)
31
+ Personas are located in `.mindforge/personas/` and are loaded via the `mf-identity` protocol.
32
+
33
+ ### 🧠 Core Reason Enclaves
34
+ - **mf-planner**: Strategic architect. Focuses on minimal complexity and high-fidelity roadmapping.
35
+ - **mf-executor**: Implementation pilot. Expert in "Beast Mode" styling and robust logic.
36
+ - **mf-reviewer**: Quality auditor. Enforces OWASP, performance, and clean code standards.
37
+ - **security-reviewer**: Focused on PQAS integrity and threat modeling.
38
+ - **debug-specialist**: RCA (Root Cause Analysis) expert with persistent state tracking.
39
+
40
+ **Invocation**: `node bin/spawn-agent.js identity [persona-name]`
41
+ **Testing**: Load a persona and ask for its "Primary Directive" to verify identity lock.
42
+
43
+ ---
44
+
45
+ ## 📚 Chapter 3: SkillStacks (10+ Subject Matter Skills)
46
+ Skills are located in `.mindforge/skills/` and provide specialized domain knowledge.
47
+
48
+ - **agency-senior-developer**: Expert implementation of modern web stacks.
49
+ - **agency-software-architect**: System design and architectural patterns.
50
+ - **agency-security-engineer**: Threat detection and post-quantum hardening.
51
+ - **agency-ai-engineer**: ML model optimization and agentic steering.
52
+ - **agency-ux-architect**: Fluid animations and premium interface design.
53
+
54
+ **Invocation**: Automatic via the Neural Orchestrator when relevant tasks are detected.
55
+ **Testing**: Ask for a specific domain task (e.g., "Review this SQL for injection") and verify the correct skill triggers.
56
+
57
+ ---
58
+
59
+ ## 🔄 Chapter 4: Logic Workflows (50+ Interaction Flows)
60
+ Workflows are located in `.agent/workflows/` and define multi-step reasoning patterns.
61
+
62
+ - **mindforge:discuss-phase**: Requirement gathering -> Assumption analysis -> Planning.
63
+ - **mindforge:execute-phase**: Plan reading -> Wave parallelization -> Self-healing.
64
+ - **mindforge:verify-work**: UAT criteria -> Browser testing -> Evidence capture.
65
+ - **mindforge:ship**: PR creation -> Documentation update -> Version bump.
66
+
67
+ **Invocation**: Triggered by slash commands or phase transitions.
68
+ **Testing**: Run `/mindforge:next` and verify the agent follows the correct workflow state.
69
+
70
+ ---
71
+
72
+ ## 🔗 Chapter 5: Automation Hooks (6+ Lifecycle Guards)
73
+ Hooks are located in `.agent/hooks/` and enforce framework integrity.
74
+
75
+ - **mindforge-prompt-guard**: Prevents prompt injection and jailbreak attempts.
76
+ - **mindforge-workflow-guard**: Ensures commands are only run in the correct phase state.
77
+ - **mindforge-statusline**: Provides real-time status telemetry to the terminal.
78
+ - **pre-commit-security**: Runs a `--secrets` scan before every git commit.
79
+
80
+ **Testing**: Try to commit a file with a dummy API key (should be blocked).
81
+
82
+ ---
83
+
84
+ ## ✨ Chapter 6: Sovereign Intelligence Matrix (v6.2.0-alpha)
85
+ The peak of MindForge architectural pillars (IX-XII).
86
+
87
+ ### 🛡️ Post-Quantum Agentic Security (PQAS)
88
+ - **Quantum-Crypto**: Core engine for lattice-based verification.
89
+ - **Test**: `node bin/governance/quantum-crypto.js --verify .mindforge/engine/`.
90
+
91
+ ### 🏠 Proactive Semantic Homing
92
+ - **Intent-Harvester**: Proactive idle-task claiming engine.
93
+ - **Test**: `node bin/autonomous/intent-harvester.js --status`.
94
+
95
+ ---
96
+ *MindForge v6.2.0-alpha "Beast Mode" — Absolute Sovereignty. Absolute Performance.*
@@ -1,15 +1,15 @@
1
1
  # MindForge Architecture Overview
2
2
 
3
- MindForge v5.0.0 is built on a distributed "Agentic OS" architecture, designed for enterprise-scale intelligence sharing and absolute governance.
3
+ MindForge v6.0.0 is built on a distributed "Agentic OS" architecture, designed for enterprise-scale intelligence sharing and absolute governance.
4
4
 
5
5
  ---
6
6
 
7
- ## 1. Core Architectural Pillars (v5.0.0)
7
+ ## 1. Core Architectural Pillars (v6.0.0)
8
8
 
9
- The framework is focused on six major pillars, with V5 introducing the **Distributed Intelligence** and **Policy Governance** layers:
9
+ The framework is focused on eight major pillars, with V6 introducing the **Neural Blast Radius Optimizer (CADIA)**:
10
10
 
11
11
  1. **Federated Intelligence Mesh (FIM)**: Distributed knowledge sharing with delta-sync and cryptographic provenance. [V5-ENTERPRISE.md](./V5-ENTERPRISE.md)
12
- 2. **Agentic Policy Orchestrator (APO)**: Non-bypassable policy-as-code governance that intercepts autonomous intents.
12
+ 2. **CADIA Engine (v6.0.0 Alpha)**: Neural Blast Radius Optimizer that calculates real-time architectural risk based on influence, entropy, and alignment.
13
13
  3. **Predictive Agentic Reliability (PAR)**: Self-healing reasoning loops and context refactoring. [PAR-ZTS-SURVEY.md](./PAR-ZTS-SURVEY.md)
14
14
  4. **Supply Chain Trust (ZTS)**: Agentic SBOM and 7-dimension skill certification. [PAR-ZTS-SURVEY.md](./PAR-ZTS-SURVEY.md)
15
15
  5. **Zero-Trust Agentic Identity (ZTAI)**: DID-based cryptographic signing for all agentic actions and tiered trust enforcement.
@@ -13,15 +13,17 @@ The FIM transitions MindForge from local knowledge silos to a shared organizatio
13
13
  - **Enterprise Resilience & Governance (v5.1.0)**: A high-availability central hub for sharing high-confidence agentic findings across the entire enterprise.
14
14
  - **ZTAI-Signed Provenance**: Every piece of knowledge in the mesh is cryptographically tied to the DID of the agent that generated it.
15
15
 
16
- ### Pillar II: Agentic Policy Orchestrator (APO)
16
+ ### Pillar II: Agentic Policy Orchestrator (APO) — CADIA Engine (v6.0.0 Alpha)
17
17
 
18
- # MindForge Governance Guide (v5.1.0)
19
- MindForge v5.1.0 introduces a non-bypassable, intent-level governance layer that evaluates every autonomous wave against organizational security policies.
18
+ # MindForge Governance Guide (v6.0.0)
19
+ MindForge v6.0.0 introduces **Context-Aware Dynamic Impact Analysis (CADIA)**, a non-bypassable, architectural governance layer that evaluates every autonomous wave against organizational security and risk policies.
20
20
 
21
- - **Policy-as-Code (PaC)**: Security rules are defined in declarative JSON/YAML schemas, enabling version-controlled governance.
22
- - **Real-Time Intent Interception**: The `AutoRunner` intercepts swarm intents (Action, Resource, DID, Tier) before execution.
23
- - **Dynamic RBAC Mapping**: v5.1.0 automatically maps ZTAI Trust Tiers to project roles based on an agent's **Zero-Trust Agentic Identity (ZTAI)** trust tier.
24
- - **Fail-Safe Governance**: "Default Deny" posture for sensitive operations (API key access, infra modification, etc.).
21
+ - **Policy-as-Code (PaC)**: Security rules are defined in declarative JSON schemas, enabling version-controlled governance.
22
+ - **Dynamic Blast Radius Analysis**: Calculates real-time architectural risk based on file influence, session entropy (multi-file modification speed), and goal alignment.
23
+ - **Session Entropy Guardrails**: Risk increases logarithmically as an agent touches more files, preventing "Rogue Wave" mass corruption.
24
+ - **ZTAI-Trust Weighting**: Senior agents (Tier 3) gain "Architectural Credit," while Tier 1-2 agents are kept under strict risk caps.
25
+ - **Reasoning Proof Bypass**: Tier 3 agents can override high-risk blocks by providing a cryptographically signed "Reasoning Proof."
26
+ - **Enterprise Audit Log**: All evaluations are logged to `.planning/RISK-AUDIT.jsonl` for compliance reporting.
25
27
 
26
28
  ### Pillar III: Predictive Agentic Reliability (PAR) (v5.5.0)
27
29
 
@@ -61,13 +63,22 @@ SRE provides a "Confidential Computing" environment for the agent's internal tho
61
63
  - **Non-Custodial Verification**: New `verifyZKProof` utility allows auditors to cryptographically verify that an agent followed policy within the enclave without ever seeing the raw thoughts.
62
64
  - **Thought-Chain Sanitization**: Automated redaction of sensitive patterns (keys, credentials, PII) from reasoning traces before persistent certificate generation.
63
65
 
64
- ### Pillar VII: Dynamic Human-Agent Handover (DHH)
66
+ ### Pillar VII: Interactive Temporal Steering (NEXUS)
65
67
 
66
- DHH creates a seamless bridge between fully autonomous execution and high-precision human steering.
68
+ NEXUS transforms the `NexusTracer` from a passive observer into an active temporal control plane, enabling sub-second state reconstruction and hindsight injection.
67
69
 
68
- - **Nexus State Bundles**: Automated "Context Freeze" and packaging of memory, diffs, and reasoning traces when agent confidence drops below 60%.
69
- - **Mid-Wave Steering**: In-flight steering injection into the `AutoRunner` loop, allowing humans to re-orient an active autonomous wave without restarts.
70
- - **Confidence-to-Human Gating**: Proactive interruption of the autonomous stream for "Human-in-the-Loop" approval on sensitive T3 operations.
70
+ - **Temporal History Slider**: Real-time navigation through the agent's reasoning-space, allowing for high-fidelity state inspection at any point in the execution wave.
71
+ - **Hindsight Injection Protocol**: Allows for the injection of "Steering Vectors" into past reasoning nodes to re-orient the agent's logic without a full session restart.
72
+ - **Rollback-to-State**: Automated state reconstruction that resets the environment and `.planning/` directory to match a specific `auditId` signature.
73
+ - **Dynamic Handover (DHH)**: Integrated confidence-based human escalation when reasoning entropy remains high after steering.
74
+
75
+ ### Pillar VIII: Agentic Revenue Operations (AgRevOps)
76
+
77
+ AgRevOps treats agentic compute as a first-class financial and governance asset, providing real-time ROI and accountability.
78
+
79
+ - **ROI Logic Engine**: Maps complex task completions (refactor, test, audit) to developer-hour savings ($100/hr) vs. provider token costs.
80
+ - **Velocity Forecaster**: Predictive analytics that calculate milestone completion ETAs based on historical task-weight throughput and system latency.
81
+ - **Governance Debt Monitoring**: Tracks policy bypasses and high-risk security findings to compute a "Security Health Score" (SHS), ensuring framework liability remains within enterprise bounds.
71
82
 
72
83
  ---
73
84
 
@@ -98,6 +109,9 @@ DHH creates a seamless bridge between fully autonomous execution and high-precis
98
109
  | **Recovery Agent** | `bin/engine/temporal-hindsight.js` | Generates steering vectors for proactive recovery. |
99
110
  | **Skill Validator** | `bin/skill-validator.js` | JIT Binary Runtime Attestation and 7D scoring. |
100
111
  | **SRE Manager** | `bin/engine/sre-manager.js` | Trusted execution enclave management. |
112
+ | **ROI Engine** | `bin/revops/roi-engine.js` | Financial value synthesis and cost/benefit mapping. |
113
+ | **Velocity Forecaster** | `bin/revops/velocity-forecaster.js` | Predictive milestone ETA and throughput analytics. |
114
+ | **Debt Monitor** | `bin/revops/debt-monitor.js` | Security Health Score (SHS) and governance debt tracking. |
101
115
  | **Handover Manager** | `bin/engine/handover-manager.js` | Nexus bundle creation and steering logic. |
102
116
  | **SBOM Tracer** | `bin/engine/nexus-tracer.js` | SRE-aware audit logging and manifest generation. |
103
117
 
@@ -0,0 +1,43 @@
1
+ # MindForge v6.1.0-alpha: Sovereign Intelligence (Pillars IX & X)
2
+
3
+ The **Sovereign Intelligence** phase elevates MindForge from reactive autonomous waves to a self-optimizing, self-healing agentic operating system. This is achieved through real-time financial arbitrage and proactive reasoning integrity monitoring.
4
+
5
+ ---
6
+
7
+ ## Pillar IX: Autonomous Resource Harvesting (ARH)
8
+
9
+ ### Goal
10
+ To maximize the economic efficiency of agentic work by dynamically harvesting the lowest-cost, highest-intelligence compute resources in real-time.
11
+
12
+ ### Components
13
+ - **`MarketEvaluator`**: Real-time tracker for token pricing and intelligence benchmarks across model providers (Anthropic, OpenAI, Gemini).
14
+ - **`RouterSteeringV2`**: Advanced task-to-model affinity engine. It calculates the **Min-Intelligence-Requirement (MIR)** and steers tasks accordingly.
15
+ - **ROI Arbitrage Engine**: Automatically calculates and logs the "dollar value" saved by every autonomous wave compared to standard premium-only routing.
16
+
17
+ ### Workflow
18
+ 1. **MIR Analysis**: Before a subagent is spawned, the `CloudBroker` analyzes the task taxonomy.
19
+ 2. **Arbitrage Selection**: The `MarketEvaluator` selects the optimal model (e.g., routing small fixes to a local model while keeping architectural reasoning on Gemini 1.5 Pro).
20
+ 3. **Telemetry**: Savings are logged to `AUDIT.jsonl` under the `roi_arbitrage_event` category.
21
+
22
+ ---
23
+
24
+ ## Pillar X: Neural Drift Remediation (NDR)
25
+
26
+ ### Goal
27
+ To proactively detect and remediate "Reasoning Drift" (logic loops, hallucinations, and semantic decay) before it corrupts the autonomous execution wave.
28
+
29
+ ### Components
30
+ - **`LogicDriftDetector`**: Heuristics-based engine that analyzes the `reasoning_trace` for semantic density, pattern repetition, and logical contradictions.
31
+ - **`RemediationEngine`**: A stateful recovery system that can trigger `REASONING_RESTART`, `GOLDEN_TRACE_INJECTION`, or `AUTONOMY_HALT`.
32
+ - **NexusTracer Hooks**: Deep integration into the core execution loop to intercept every reasoning span.
33
+
34
+ ### Workflow
35
+ 1. **Drift Sensing**: At every 10 reasoning nodes, the `NexusTracer` evaluates the current `DriftScore` (0-100).
36
+ 2. **Remediation Trigger**: If `DriftScore > Threshold` (Default 75), the `RemediationEngine` is invoked.
37
+ 3. **Audit Closure**: Every remediation action is logged as a `drift_remediation_event`, ensuring the "hindsight" is preserved for future sessions.
38
+
39
+ ---
40
+
41
+ ## Architectural interlock (V6.1)
42
+
43
+ Sovereign Intelligence is the final layer of the MindForge Enterprise roadmap. It leverages the **CADIA** risk engine (v6.0) and the **ZTAI** identity layer (v5.x) to ensure that all self-healing actions are both safe and non-repudiable.
@@ -1,4 +1,4 @@
1
- # MindForge v5.6.0 — Commands Reference
1
+ # MindForge v6.0.0-alpha — Commands Reference
2
2
 
3
3
  MindForge commands are organized into functional pillars to support the entire software development lifecycle (SDLC).
4
4
 
@@ -1,4 +1,4 @@
1
- # Feature: Real-time Dashboard (v4.1.0)
1
+ # Feature: Real-time Dashboard (v5.10.0)
2
2
 
3
3
  The MindForge Real-time Dashboard provides a high-fidelity, web-based control center for your agentic workflows. It leverages **Server-Sent Events (SSE)** to push live updates from your codebase directly to your browser with zero performance overhead.
4
4
 
@@ -33,11 +33,17 @@ Default access: `http://localhost:7339` (Strictly bound to `127.0.0.1` for secur
33
33
  - **Persona Context**: See which agent personas are currently active.
34
34
  - **Steerage Feed**: View steering instructions as they are applied.
35
35
 
36
- ### 5. MindForge Nexus (v4.1+)
36
+ ### 5. MindForge Nexus (v5.10+)
37
37
  - **ART Trace Explorer**: Drill down into hierarchical reasoning spans and thought chains.
38
- - **Mesh Topology**: Visual graph of the active agentic mesh and specialist clusters.
38
+ - **Temporal Control Center**: Dynamic slider-based navigation of reasoning history.
39
+ - **Hindsight Injection**: Rollback project state to any previous `auditId` and inject steering instructions to correct drift.
39
40
  - **Reasoning Heatmaps**: Identifying areas of adversarial disagreement and drift in real-time.
40
41
 
42
+ ### 6. AgRevOps Financial Hub (v5.10+)
43
+ - **ROI Hub**: Real-time tracking of developer-hour value ($100/hr) vs. token expenditure.
44
+ - **Velocity Forecaster**: Predictive analytics for milestone completion ETAs based on live task throughput.
45
+ - **Security Health Score (SHS)**: Dynamic 0-100 score reflecting governance debt and policy compliance.
46
+
41
47
  ## 🛡 Hardened Security
42
48
  - **Localhost Binding**: The server refuses connections from external IPs.
43
49
  - **CORS Lock-down**: Only allows requests from the local control plane.
@@ -1,69 +1,99 @@
1
- # MindForge Governance Guide (v5.6.0)
2
- Absolute Control through Policy-as-Code (PaC)
1
+ # MindForge Governance Guide (v6.2.0-alpha)
2
+ V6.2.0 Sovereign Intelligence: PQAS & Proactive Homing
3
3
 
4
4
  ## 1. Goal
5
- MindForge v5.6.0 introduces a non-bypassable, intent-level governance layer. This guide explains how **Agentic Policy Orchestration (APO)**, **Zero-Trust Agentic Identity (ZTAI)**, and the **Sentinel Execution Center** work together to secure the enterprise development lifecycle.
5
+ MindForge v6.2.0 achieves the final stage of **Sovereign Intelligence**, introducing post-quantum safe identities (PQAS) and proactive agentic homing. This eliminates reactive latency in the mesh and ensures long-term cryptographic resilience against future threats.
6
6
 
7
- ## 2. Agentic Policy Orchestrator (APO)
7
+ ## 2. Post-Quantum Agentic Security (Pillar XI)
8
+ MindForge implements Pillar XI to harden the identity layer against future quantum computing threats.
9
+
10
+ ### A. Lattice-Based Cryptography
11
+ - **Signature Algorithm**: Dilithium-5 (Lattice-based).
12
+ - **Key Exchange**: Kyber-1024 (Lattice-based).
13
+ - **Hardening**: Every Tier 4 agent action is signed with quantum-safe primitives, ensuring non-repudiation in the post-quantum era.
14
+
15
+ ### B. ZK-Proof Compliance Bypasses
16
+ For high-leverage architectural changes, Tier 3+ agents can generate a **Zero-Knowledge Proof** (simulated SNARK) to verify policy adherence without exposing confidential reasoning logic.
17
+
18
+ ## 3. Proactive Semantic Homing (Pillar XII)
19
+ Pillar XII transitions the autonomous swarm from reactive wave-processing to proactive, self-healing "Homing" behavior.
20
+
21
+ ### A. Intent Harvesting
22
+ Agents in an idle state proactively scan the **Federated Intelligence Mesh (FIM)** for unassigned tasks, claiming them based on **Skill-Affinity** scores to eliminate idle latency.
23
+
24
+ ### B. Mesh Self-Healing
25
+ When an agent experiences critical logic drift (>80), peer agents in the mesh proactively "home in" on the node to provide collaborative reasoning and recovery vectors.
26
+
27
+ ## 4. Agentic Policy Orchestrator (APO) — CADIA Engine
8
28
  The APO is a decentralized governance engine that intercepts every autonomous intent before it is executed.
9
29
 
10
30
  ### A. Intent Interception
11
31
  Before the `AutoRunner` begins a new execution wave, it extracts the acting agent's **Intent**:
12
32
  - **DID**: The unique identity of the agent.
13
- - **Action**: The operation being attempted (e.g., `process_phase_wave`, `modify_security_config`).
33
+ - **Action**: The operation being attempted (e.g., `WRITE`, `DELETE`, `EXECUTE`).
14
34
  - **Resource**: The target of the action (e.g., specific directories, files, or API endpoints).
15
35
  - **Tier**: The ZTAI Trust Tier assigned to the agent.
36
+ - **SessionId**: The unique identifier for the current autonomous session.
37
+ - **Reasoning Proof**: (Tier 3 Only) A justification for high-risk architectural actions.
38
+
39
+ ### B. Policy Evaluation (v6.0.0)
40
+ The upgraded `PolicyEngine` evaluates the intent using the CADIA scoring model:
41
+ 1. **Blast Radius Calculation**: The `ImpactAnalyzer` computes a risk score (0-100) based on architectural influence, session history, and goal alignment.
42
+ 2. **Tier-Based Enforcement**:
43
+ - **Score > 25 (LOW)**: Permitted for Tier 1+.
44
+ - **Score > 50 (MEDIUM)**: Permitted for Tier 2+.
45
+ - **Score > 80 (CRITICAL)**: **Denied** (Default) for Tier 0-2.
46
+ - **Tier 3 Bypass**: Senior agents can override a CRITICAL score if a valid `reasoning_proof` is provided.
47
+
48
+ ## 3. CADIA: Dynamic Impact Analysis Logic
49
+ The **ImpactAnalyzer** calculates a precision-weighted score using the follow heuristics:
16
50
 
17
- ### B. Policy Evaluation
18
- The `PolicyEngine` evaluates this intent against organizational **Policy-as-Code (PaC)** definitions (typically stored in `bin/governance/policies/`).
19
- - **Permit**: The action is allowed and execution proceeds.
20
- - **Deny**: The action is blocked, and the violation is logged to `AUDIT.jsonl`.
21
- - **Blast Radius Denial (v5.3.0)**: Action is blocked if the `Impact Score` exceeds the policy `max_impact` threshold.
22
- - **Escalate**: The action requires a higher-tier DID signature or explicit HITL (Human-in-the-Loop) approval.
23
- - **Attestation Blocking (v5.6.0)**: Executing a skill without a valid HSM-signed signature is blocked.
51
+ ### A. Architectural Influence Engine (x2.5)
52
+ High-influence files (Core, Governance, Models, and Project State) increase the blast radius score significantly.
53
+ - **Paths**: `bin/governance/*`, `bin/engine/*`, `package.json`, `.planning/*`.
24
54
 
25
- ## 3. Trust Tier Architecture (ZTAI Hardened)
26
- V5.1.0 automatically maps ZTAI Trust Tiers to explicit project roles through the `RBACManager`.
55
+ ### B. Sensitive Namespace Protection (x4.0)
56
+ Strict multipliers for mission-critical directories:
57
+ - **Namespaces**: `.mindforge/`, `bin/`, `config/`, `.agent/`.
58
+
59
+ ### C. Session Entropy Tracker (+15 per file)
60
+ To prevent "Rogue Wave" mass-corruption, the risk score increases for every file touched in a single session after the 5th modification.
61
+ - **Penalty**: `(session_count - 5) * 15`.
62
+
63
+ ### D. Goal-to-Path Alignment (+40 penalty)
64
+ The system cross-references targets against the **Current Phase** in `.planning/STATE.md`.
65
+ - **Anomalous Behavior**: If an agent tasked with "Fixing UI" attempts to modify `bin/models/cloud-broker.js`, a large penalty is applied.
66
+
67
+ ### E. ZTAI-Trust Scaling (Risk Buffers)
68
+ Trust Tiers (0-3) provide a risk "overhead" buffer:
69
+ - **Tier 1**: -10 points.
70
+ - **Tier 2**: -20 points.
71
+ - **Tier 3**: -30 points (Sovereign Trust).
72
+
73
+ ## 4. Trust Tier Architecture (ZTAI Hardened)
74
+ V6.0.0 maps ZTAI Trust Tiers to explicit project roles through the `RBACManager`.
27
75
 
28
76
  | Tier | Role | Scope | Hardening |
29
77
  | :--- | :--- | :--- | :--- |
30
- | **0** | Informational | Research/Query only. | Read-only access to non-sensitive docs. |
31
- | **1** | Implementation| Standard feature dev. | Write access to `/src`, `/tests`, `/bin/memory`. |
32
- | **2** | Specialized | Security/DevOps Specialist. | Access to `/security`, `/infra`, and `/bin/governance`. |
33
- | **3** | Principal | Lead Architect / Core Engine. | **HSM-Enclave Signing Required** for all engine modifications. |
34
-
35
- ### A. Zero-Trust Skill Protocol (v5.6.0)
36
- The Sentinel layer enforces binary runtime attestation for all skills.
37
- - **ZTAI Signing**: Developers must use `mindforge-cc sign <skill>` to cryptographically lock a skill. This computes a SHA-256 hash and signs it with a Tier 3 DID.
38
- - **JIT Verification**: Every `SKILL.md` is verified upon loading. If the hash does not match the signature registry, the `AutoRunner` blocks the skill.
39
- - **Enterprise Mode**: Strict enforcement requires 100% attestation for all library skills.
40
-
41
- ### B. Reasoning Entropy Guardrails (v5.5.0)
42
- The framework proactively monitors the "reasoning space" of the agent to prevent token-burn and logical drifting.
43
- - **RES Scoring**: `NexusTracer` evaluates reasoning steps for semantic redundancy.
44
- - **Stagnation Recovery**: When entropy falls below the safety threshold, the system interrupts the wave and injects a **Steering Vector** to force a logical pivot.
45
-
46
- ## 5. Governance Workflow (V5.1.0)
47
- 1. **ZTAI Handshake**: Agent proves identity using Ed25519 signatures.
48
- 2. **Intent Pulse**: Agentic intent is broadcast to the policy interceptor.
49
- 3. **APO Evaluation**: Policy engine checks the intent against PaC rules.
50
- 4. **Role binding**: `RBACManager` grants or revokes permissions based on the active trust tier.
51
- 5. **Verified Wave**: Execution proceeds only if all policy gates are clear.
78
+ | **0** | Informational | Research/Query only. | Read-only. No CADIA bypass. |
79
+ | **1** | Implementation| Standard feature dev. | Write to `/src`, `/tests`. Session limit: 5 files. |
80
+ | **2** | Specialized | Security/Ops Specialist. | Access to `/security`, `/infra`. Higher risk cap (60). |
81
+ | **3** | Principal | Lead Architect / CEO. | **Full CADIA Bypass** (with Reasoning Proof). |
82
+
83
+ ## 5. Enterprise Audit & Compliance (RISK-AUDIT)
84
+ Every governance evaluation is persistently recorded in `.planning/RISK-AUDIT.jsonl`. This log provides a high-fidelity trail for enterprise compliance:
85
+ - **requestId**: Unique ID for every evaluation.
86
+ - **impactScore**: The final CADIA risk score (0-100).
87
+ - **verdict**: PERMIT or DENY.
88
+ - **reason**: Detailed explanation for the decision (e.g., "Violation: Max Impact Exceeded").
52
89
 
53
90
  ## 6. Enterprise Policies
54
- MindForge v5.1.0 ships with default policies including:
91
+ MindForge v6.0.0 ships with default policies including:
55
92
  - **`gate_tier_3_engine`**: Blocks all modifications to `bin/autonomous/` unless signed by a Tier 3 DID.
56
93
  - **`protect_security_namespace`**: Limits access to `/security` and `/governance` to Tier 2+ specialists.
57
- - **`mesh_integrity_lock`**: Ensures only high-confidence agents can push to the **Federated Intelligence Mesh**.
58
- - **`enforce_blast_radius` (v5.3.0)**: Dynamic policy that limits `DELETE` impact to <30 for Tier 1 agents.
59
- - **`require_skill_attestation` (v5.6.0)**: Forces all skills to have valid ZTAI-signatures before loading.
60
- - **`monitor_reasoning_entropy` (v5.5.0)**: Automated loop detection and steering for long-running autonomous waves.
61
-
62
- ## 7. Dynamic Blast Radius (v5.3.0)
63
- The **ImpactAnalyzer** calculates a score (0-100) for every intent:
64
- - **Action Type**: `DELETE` (10), `WRITE` (5), `READ` (1).
65
- - **Sensitivity**: 4x multiplier for `.mindforge/`, `bin/`, and `config/` namespaces.
66
- - **Fail-Safe**: Defaults to Score 100 (CRITICAL) if analysis fails.
94
+ - **`enforce_blast_radius` (v6.0.0)**: Dynamic policy that enforces a strict 60-point cap for non-Sovereign agents.
95
+ - **`require_skill_attestation`**: Forces all skills to have valid ZTAI-signatures before loading.
67
96
 
68
97
  ---
69
- *Status: V5.3.0 Dynamic Blast Radius Implemented & Verified (2026-03-28)*
98
+ *Status: V6.0.0 CADIA (Context-Aware Dynamic Impact Analysis) Implemented & Verified (2026-03-29)*
99
+
@@ -0,0 +1,37 @@
1
+ # MindForge — Agent Identity Registry (v6.2.0-alpha)
2
+
3
+ This registry catalogs the specialized agent identities available for direct invocation and autonomous collaboration within the MindForge mesh.
4
+
5
+ ## 👤 Interaction Layer (Public Identifiers)
6
+
7
+ | Agent | Core Persona | Interaction Focus | Primary Directive |
8
+ | :--- | :--- | :--- | :--- |
9
+ | **mf-planner** | Strategic Architect | Planning & Roadmapping | "Design systems with 10/10 fidelity." |
10
+ | **mf-executor** | Lead Developer | Feature Implementation | "Ship premium-grade code by default." |
11
+ | **mf-reviewer** | Quality Auditor | Review & Validation | "Find the bugs before they ship." |
12
+ | **mf-memory** | Semantic Clerk | Knowledge & History | "Manage the knowledge graph sync." |
13
+ | **mf-researcher** | Discovery Agent | Deep Context Search | "Surface the unknown-unknowns." |
14
+ | **mf-tool** | System Operator | CLI & Environment | "Execute system transformations safely." |
15
+
16
+ ## 🛡️ Specialized Sovereign Agents
17
+
18
+ | Agent | Core Persona | Operational Focus | Primary Directive |
19
+ | :--- | :--- | :--- | :--- |
20
+ | **security-reviewer** | Threat Hunter | Security Hardening | "Secure the framework against threats." |
21
+ | **nyquist-auditor** | Logic Auditor | Requirement Tracing | "Ensure 100% requirement coverage." |
22
+ | **debug-specialist** | RCA Expert | Systematic Debugging | "Debug with persistent state tracking." |
23
+ | **ui-auditor** | Visual Designer | Aesthetic Excellence | "Ensure 10/10 aesthetics & UX." |
24
+ | **verifier** | UAT Specialist | Evidence Validation | "Prove functionality with visual proof." |
25
+
26
+ ## 🧠 Autonomous Swarm Enclaves
27
+
28
+ | Agent | Core Persona | Collaborative Focus | Primary Directive |
29
+ | :--- | :--- | :--- | :--- |
30
+ | **qa-engineer** | Logic Guard | Adversarial Testing | "Find failure modes in the logic." |
31
+ | **tech-writer** | Knowledge Lead | Documentation Sync | "Transform complexity into clarity." |
32
+ | **research-agent** | Data Scraper | Recursive Discovery | "Gather data points from web/repo." |
33
+ | **roadmapper** | Execution Lead | Milestone Sequencing | "Derive phases from requirements." |
34
+ | **user-profiler** | Behavioral Lead | Personalized DX | "Adapt to the unique user needs." |
35
+
36
+ ---
37
+ *For more details, see the [MIND-FORGE-REFERENCE-V6.md](../MIND-FORGE-REFERENCE-V6.md).*