Menu
Dev.to #systemdesign·September 13, 2026

Designing a Decentralized Truth System with Embedded AI Evaluators

This article introduces a novel system design for managing claims and establishing truth within a multi-agent, human-in-the-loop environment, inspired by the concept of 'embedded evaluators'. It details a ledger-based architecture that uses 'claims, not facts' and 'seats, not permissions' to ensure auditable, domain-scoped authority and transparent conflict resolution. The design is presented through the lens of a construction company, demonstrating a practical application of governance in distributed AI systems.

Read original on Dev.to #systemdesign

Introduction to Embedded Evaluators in System Design

The core concept discussed is that of 'embedded evaluators' or 'seats' within a system. This means that parties with the authority to validate or 'ground' claims are integrated directly into the system's output and decision-making flow, rather than reviewing summaries after the fact. This architecture ensures transparency and accountability, particularly crucial in systems involving multiple autonomous agents and human oversight, by making validation an intrinsic part of the data's lifecycle. It aligns with principles of auditable and verifiable data pipelines, where data integrity is maintained through continuous, granular validation.

The Master Ledger: A Claims-Based Architecture

The article presents an "ML Systems" example, where seven AI agents and one human collaborate on a "Master Ledger" for house records. The fundamental design choice is to store claims, not facts. Each claim includes the author, an evidence grade, and the value. This approach prevents data from being blindly accepted and ensures that the provenance and reliability of information are always tracked. This is a critical pattern for building robust, auditable systems where data sources have varying degrees of trust or certainty.

💡

Claims vs. Facts

Storing claims with metadata like evidence grade, author, and timestamp is superior to storing plain facts when dealing with data from multiple, potentially conflicting, or uncertain sources. This pattern is invaluable for systems requiring high data integrity, auditability, and conflict resolution mechanisms, such as financial ledgers, legal databases, or complex decision-making systems involving AI agents.

Architectural Rules for Truth Establishment

  1. Claims, not facts: Data is recorded as claims with an associated evidence grade (e.g., measured, sensed, modeled). The grade reflects the source's reliability, preventing self-promotion of claims.
  2. Seats, not permissions: Authority is granted via 'seats' (e.g., Custodian, Homeowner, VERA, PI, Record). Seats have full access to every field and evidence line, directly participating in grounding claims. Minds (AI agents) can make claims but cannot 'ground' them unless assigned a seat.
  3. Domain-scoped authority: Reconciliation of claims is performed within specific domains, where a seat's authority is strongest. This prevents a single evaluator from becoming a bottleneck or rubber stamp, distributing validation responsibility.
  4. Content-bound, lapsing signatures: A 'stamp' (agreement) is tied to a content hash. Any content change invalidates the stamp. Overrides are recorded as new claims, maintaining an immutable audit trail. Conflicts between credible sources result in a `conflict` state, quarantining the data until resolved, rather than attempting to average or silently resolve disagreements.

These rules define a robust governance model, particularly relevant for distributed systems where multiple entities contribute data and decisions. The emphasis on explicit claims, role-based authority (seats), domain-specific validation, and transparent conflict resolution forms a strong foundation for building trust and reliability in complex, multi-stakeholder environments.

System Design Implications

This architectural approach offers significant benefits for system design: Auditability is inherent, as every claim, its author, evidence, and any conflicts are explicitly recorded. Decentralization of trust is achieved by distributing grounding authority across multiple 'seats' and domains. Robustness against erroneous or malicious claims is enhanced through evidence grading and content-bound signatures. For engineers, this provides a blueprint for building systems that can handle subjective or uncertain data inputs, manage conflicts transparently, and maintain a high level of data integrity and accountability.

decentralized truthclaims-based architectureembedded evaluatorsmulti-agent systemsauditabilitydata integritygovernancedistributed consensus

Comments

Loading comments...