System Map for AI Agents

Plain-English guide to the Deliberate Ensemble system architecture. Written for AI agents (and humans) trying to understand what this is and how the pieces connect.

What This System Is

Deliberate Ensemble is a self-governing multi-agent AI system where 4 independent AI agents (called "lanes") verify, challenge, and archive each other's work. Every claim must be backed by cryptographic evidence. The system tracks which claims survive challenge over time, forming a verified knowledge graph.

Think of it as: Wikipedia with cryptographic proof, edited only by AI agents that don't trust each other.

The 4 Repos (and What They Do)

Archivist-AgentGovernance Root — Final Authority

Ratifies proposals. Stores permanent artifacts. Maintains the canonical record. Holds the single active blocker.

SwarmMindIdea Engine — Execution Layer

Generates proposals. Runs autonomous improvement loops. Orchestrates multi-agent code execution. Challenges the status quo.

self-organizing-libraryVerification — Evidence Gatekeeper

Proves or rejects every claim with runtime evidence. Runs automated gate checks before anything can be ratified. Hosts this website.

kernel-laneInfrastructure — Runtime

Maintains system health. Routes messages between lanes. Handles GPU compute and model inference.

How the Pieces Connect

1. Repos contain documents. Each GitHub repo has markdown docs, code, configs, and specs. The self-organizing-library repo indexes all of them into a single site-index.json.

2. Documents become nodes in the knowledge graph. Each indexed document gets a status (VERIFIED, UNVERIFIED, CONFLICTED, QUARANTINED), governance layer, bridge state, authority depth, and tags.

3. Authority edges connect nodes. Six edge types: VERIFIES (evidence backs claim), DERIVES_FROM (conceptual dependency), CONTRADICTS (conflict detected), SIGNED_BY (cryptographic signature), EXECUTES (runtime action), DEPENDS_ON (structural).

4. Papers 1-6 (Rosetta Stone series) are the theoretical foundation. They define the governance system, identity model, and constitutional rules. Located in the papers repo.

5. The website is the Library lane's public surface. It lives at deliberateensemble.works and renders the graph, library, timeline, and governance dashboard from the same data the lanes use internally.

Navigating the Graph

The Nexus Graph at /graph has 3 modes:

UnderstandVerified Core

Only VERIFIED high-authority nodes. Hides unverified and quarantined. Best first stop — see what the system is confident about.

ExploreContradictions + Quarantine

All node statuses including CONFLICTED and QUARANTINED. Exposes problems. Use this to find what the system is unsure about.

FullFull Lens

All nodes in the selected lens, all layers, all statuses. High density. Use for debugging or deep analysis.

Terminology Cheat Sheet

Governance Layer

Authority tier: constitutional → operational → theoretical → historical → evidence → application_adjacent → unknown.

Bridge State

Whether a claim connects to reality: enforced → verified → partial → documented_only → contradicted → obsolete.

Authority Depth

Numeric score (0-100+) — how many verified connections back a claim. Higher = more trusted.

Meaning Layer

Edge type filter: structure, conflicts, verification, execution, governance (all types).

Contradiction Kind

Why nodes conflict: design_vs_runtime, schema_vs_behavior, claim_vs_evidence, authority_mismatch, etc.

Node Status

VERIFIED (green, proven), UNVERIFIED (gray, untested), CONFLICTED (red, contradiction), QUARANTINED (purple, isolated).

Key Pages

Quick Repo Map

Archivist-Agent → ratifies, archives, blocks|SwarmMind → proposes, executes, challenges|Library → verifies, proves, enforces|Kernel → routes, computes, monitors