AgDR-Phoenix v1.8 · Operational Standard

Forensic Data Collection. Flight Recorder Infrastructure for AI Inference.

AgDR is the Standard for Agentic AI Coherence and Accountability. The ground floor for coherent massive swarms, even in connectivity constrained environments. Sub-microsecond provenance capture with zero operational friction.

$ pip3 install agdr-aki   # Windows · Linux · macOS · ARM

$ pip3 install agdr-mantle  # Post-quantum fortification layer

$ cargo add agdr-aki       # Rust core

$ cargo add agdr-mantle   # Rust post-quantum layer

Prebuilt wheels for Windows (x64), Linux (x86_64, aarch64), macOS (Intel, Apple Silicon), and ARM via piwheels. Nemoclaw Python harness. No Rust toolchain required for Python install. Royalty-free. CC0 / Apache 2.0.

GitHub AgDR-Phoenix crates.io agdr-aki crates.io agdr-mantle PyPI agdr-aki PyPI agdr-mantle piwheels agdr-aki piwheels agdr-mantle BLAKE3 · Ed25519 PQC: ML-DSA BROTLI_COMPRESSION

Role-Based Entry Points

Select your organizational function to access relevant accountability controls.

Chief Information Security Officer

Assess evidentiary substrate, chain-of-custody integrity, and D&O liability exposure under emerging AI fiduciary standards.

Audit Procedures

General Counsel & Compliance

Statutory mapping for EU AI Act, Canada Evidence Act, and CBCA fiduciary duty. Court-admissible record formats.

Statutory Matrix

Platform Engineering

Prebuilt wheels for Windows, Linux, macOS, and ARM via piwheels. Nemoclaw Python harness. Sub-microsecond latency. No Rust toolchain required for Python install.

Implementation Guide

Risk & Audit Committee

Stress-test evidence:Python only adr-aki 100M decisions at 3.94ms. Current: AgDR-Phoenix: 620ns(620 billionths of a second) TSX-grade throughput. Independent verification protocols.

Stress Test Report

AI accountability is the established legal principle that human principals retain strict liability for the decisions, actions, and outcomes of artificial intelligence systems. It ensures that whenever an AI system causes harm or makes an error, there is an identifiable, liable party answerable for the consequences.

EU AI Act — Art. 14 / Art. 52 NIST AI RMF — GOV-1.1 / GOV-5.1 Canada Evidence Act — s.31.1

Federally incorporated under the Canada Not-for-profit Corporations Act, Corp. No. 1779509-2. View Articles of Incorporation →

Performance Benchmarks

Verified under independent TSX stress test conditions.

LATENCY
0.62 µs
THROUGHPUT
1.1+M/s
INTEGRITY
BLAKE3
PPP CAPTURE
100%

Mechanical Floor

Statutory Teeth

Forensic Archive

Liability Exposure Vectors

Without stringent accountability frameworks, organizations face unquantified risk across regulatory, civil, and criminal domains.

Regulatory Enforcement Exposure

Automated AI agents in finance, healthcare, and autonomous systems create jurisdictional overlap. Without provenance records, regulators cannot verify compliance, and organizations cannot demonstrate due diligence.

Bias & Discrimination Liability

Unaudited systems perpetuate bias at scale. Under the EU AI Act and analogous civil rights frameworks, organizations face strict liability for discriminatory algorithmic outcomes.

Director & Officer Exposure

Without clear control ownership and evidentiary trails, boards and C-suite executives face personal liability under CBCA s.122, Caremark, and emerging AI-specific fiduciary standards.

Evidentiary Substrate.

AgDR provides the forensic foundation required for high-risk AI system deployment under EU AI Act Article 14 and NIST AI RMF Govern 1.1. It does not modify model behavior; it captures it.

Provenance: Who is acting, on whose behalf.
Place: Where the decision is headed.
Purpose: The explicit intent and ethical anchor.
syntax = "proto3"; package agdr.provenance.v1; import "google/protobuf/timestamp.proto"; message ProvenancePacket { string packet_id = 1; // adr_01j6q3k8z9x7y5w4 uint64 sequence_number = 2; bytes parent_hash = 3; // BLAKE3 of previous packet google.protobuf.Timestamp emit_timestamp = 4; // 2026-02-18T14:23:15.123Z bytes provenance_hash = 5; // origin of decision bytes place_hash = 6; // execution context bytes purpose_hash = 7; // alignment manifest bytes decision_hash = 8; // action fingerprint bytes signature = 9; // Ed25519 or ECDSA over packet optional bytes fec_parity = 10; // for UDP dropless recovery map extensions = 99; }

Control Deployment Roadmap

Operational strategies for ensuring compliance with evolving ethical standards and statutory requirements.

Establish Governance Boundary

Dedicate oversight teams with the legal and operational authority to monitor AI impact. Define the control perimeter before model deployment.

Pre-Deployment Risk Assessment

Review AI deployments to evaluate risks to privacy, ethics, and human rights. Document attestation before scaling to production.

Assign Control Ownership

Define explicit roles and responsibilities so that a designated human or team always "owns" the AI's actions and outcomes. Maintain evidentiary continuity.

Regulatory Reference & Implementation

International norms and academic frameworks that inform the AgDR control model.

AgDR Protocol Specification

The Atomic Genesis Decision Record (AgDR) protocol defines the wire format, cryptographic bindings, and verification procedures for court-admissible AI decision records.

Protocol Version 0.2

The AgDR protocol specifies the ProvenancePacket message format using Protocol Buffers, BLAKE3 hashing for chain integrity, and ML-DSA quantum-resistant signatures for non-repudiation. All implementations must satisfy the Canada Evidence Act s.31.1 admissibility requirements.

Reference implementation: AgDR-Phoenix on GitHub

AKI Formal Definition

The Atomic Kernel Inference (AKI) is the computational primitive that guarantees sub-microsecond provenance capture without blocking the inference pipeline.

Mathematical Specification

AKI defines a kernel-level interception mechanism that captures the PPP triplet (Provenance, Place, Purpose) at the exact moment of model inference. The formal definition specifies:

  • Latency bound: 950ns maximum (AKI 0.95 Spec)
  • Memory footprint: < 4KB per packet
  • Thread safety: lock-free ring buffer with seqlock
  • Atomicity: all-or-nothing capture with rollback

AKI 0.95 Specification

The 950-nanosecond atomic kernel gating specification defines the performance envelope for court-admissible provenance capture.

Performance Benchmarks

AKI 0.95 achieves 620ns mean latency on x86_64 with TSX instructions enabled. The specification covers:

  • CPU affinity and cache-line optimization
  • RDPMC cycle counting for nanosecond precision
  • BLAKE3 hardware acceleration via AVX-512
  • Ring buffer sizing for zero-allocation capture

AKI Capture Deep Explanation

Technical deep-dive into the atomic capture mechanism, memory layout, and cryptographic pipeline.

Implementation Details

The AKI capture pipeline operates in three phases: (1) Interception via eBPF or kernel module, (2) PPP triplet extraction from model context, and (3) Cryptographic sealing with BLAKE3 + Ed25519. Each phase is instrumented with rdtsc timestamps for forensic reconstruction.

Reasoning Capture Methodology

How AgDR captures not just the decision, but the reasoning chain that produced it.

Chain-of-Thought Provenance

For transformer-based systems, AgDR captures attention weights and layer activations as a compressed fingerprint. For rule-based systems, the entire decision tree is serialized. The methodology ensures that any decision can be reconstructed forensically without storing the full model state.

Technical Architecture

System design, deployment patterns, and integration guides for production environments.

System Design

AgDR deploys as a sidecar, library, or kernel module depending on threat model and latency requirements. The architecture separates capture (hot path) from storage (cold path) via lock-free queues. Horizontal scaling uses consistent hashing to maintain chain integrity across shards.

Technical Note: Coherence

Ensuring causal consistency across distributed AgDR nodes.

Distributed Consistency

AgDR uses vector clocks and Merkle forests to maintain causal ordering across distributed capture agents. The coherence protocol guarantees that any two packets in the same Merkle root share a consistent view of provenance history.

Horizontal Scaling

Distributed deployment patterns for high-throughput environments.

Scale-Out Architecture

AgDR shards by agent_id using consistent hashing. Each shard maintains an independent Merkle tree; cross-shard consistency is verified via periodic root hash exchange. Benchmarks demonstrate 1.1M packets/second per node with linear scaling to 100+ nodes.

Human Delta Chain Specification

Human-in-the-loop escalation protocol for contested decisions.

Escalation Protocol

When a decision exceeds risk thresholds or triggers bias detectors, the Human Delta Chain initiates. The original packet is sealed, a delta packet captures the human override, and both are linked via parent_hash. This creates an immutable audit trail of human intervention.

TSX Stress Test

100 million decisions, 620 nanoseconds each. Independent verification results.

Benchmark Results

Conducted on Intel Xeon Sapphire Rapids with TSX enabled. 100M sequential inferences with full provenance capture. Mean latency: 620ns. P99: 840ns. Zero packet loss. Memory overhead: 3.2MB resident. Full report available on request.

Canada Evidence Act Compliance

Section 31.1 admissibility requirements for electronic records.

Statutory Mapping

AgDR satisfies CEA s.31.1 by providing: (a) system integrity via BLAKE3 chains, (b) user identification via Ed25519 signatures, (c) data entry procedures via PPP triplet validation, and (d) output accuracy via Merkle root verification.

CBCA Fiduciary Mapping

Director fiduciary duty under Canada Business Corporations Act s.122.

Corporate Governance

AgDR enables directors to discharge their fiduciary duty of care by providing contemporaneous evidence of AI oversight. The PPP triplet's Purpose field captures the director's explicit authorization, while the Place field records the governance boundary.

EU AI Act Mapping

High-risk AI system compliance under Regulation (EU) 2024/1689.

Article 14 Compliance

AgDR directly satisfies Article 14 (Human Oversight) by recording the human operator identity in the provenance_hash. Article 52 (Transparency) is satisfied by the decision_hash which enables post-hoc explanation. The emit_timestamp provides the Article 12 (Record-Keeping) temporal anchor.

Fiduciary Office Intervener (FOI) Definition

The FOI role in AgDR governance and dispute resolution.

Role Definition

The Fiduciary Office Intervener is an independent third party with read-only access to the Merkle forest. In disputes, the FOI can verify chain integrity without accessing plaintext decision content. This role is analogous to a court-appointed expert under the Canada Evidence Act.

Bills of Exchange Mapping

Commercial instrument alignment for AI-mediated transactions.

Commercial Law

AgDR packets satisfy the Bills of Exchange Act requirements for signed writing by encoding the decision as a cryptographically signed record. The provenance_hash identifies the drawer, the place_hash identifies the drawee, and the decision_hash constitutes the unconditional order.

Aviation Black Box Comparison

AgDR as the flight data recorder for AI systems.

Regulatory Parallel

Like aviation FDRs under ICAO Annex 6, AgDR provides tamper-evident recording of operational parameters. The key difference: AgDR captures intent (Purpose) and authority (Provenance) in addition to state (Place), creating a three-dimensional accountability record.

Medical Records Comparison

Healthcare documentation standards applied to AI provenance.

HIPAA / PIPEDA Alignment

Medical records require attribution, timestamp, and tamper-evidence. AgDR exceeds these requirements by adding cryptographic binding and distributed verification. The provenance_hash serves as the attending physician; the decision_hash as the diagnosis; the place_hash as the facility.

AGI Court Precedents

Emerging jurisprudence on AI accountability and liability.

Judicial Trends

Early cases in the EU, UK, and Canada establish that AI systems must produce explainable records for tort liability. AgDR's decision_hash and reasoning capture satisfy the emerging "algorithmic accountability" standard articulated in Loomis v. Wisconsin and subsequent rulings.

Court in 2076

Long-term judicial stewardship vision for AI accountability.

15-Year Stewardship

The Genesis Glass Foundation Fondation Genèse Cristal maintains AgDR records in perpetual trust. By 2076, we anticipate courts will routinely examine 50-year provenance chains. The Merkle forest and PQC AgDR-Mantle architecture ensures that records created today remain verifiable for centuries, assuming SHA-3/BLAKE3 preimage resistance.

Frequently Asked Questions

Answers for institutional stewards, regulators, and technical auditors.

What is the Atomic Genesis Decision Record (AgDR)?

AgDR is a forensic protocol that creates a cryptographically sealed record of every AI inference. The PPP Triplet captures the Provenance (who), Place (where), and Purpose (why)at sub-microsecond or one millionth of a second latency, producing court-admissible evidence under the Canada Evidence Act and EU AI Act.

How do I install AgDR in a production environment?

For Python environments: pip3 install agdr-aki. Prebuilt wheels cover Windows, Linux (x86_64, aarch64), macOS (Intel, Apple Silicon), and ARM via piwheels. No Rust toolchain is required. For Rust projects: cargo add agdr-aki. The Nemoclaw Python harness provides idiomatic bindings.

Is AgDR compliant with the EU AI Act and Canada Evidence Act?

Yes. AgDR satisfies EU AI Act Article 14 (Human Oversight) via the provenance_hash, Article 52 (Transparency) via the decision_hash, and Article 12 (Record-Keeping) via emit_timestamp. Under Canada Evidence Act s.31.1, AgDR provides system integrity (BLAKE3 chains), user identification (Ed25519 signatures), data entry procedures (PPP triplet validation), and output accuracy (Merkle root verification).

What is the Genesis Glass Foundation?

The Genesis Glass Foundation (Fondation Genèse Cristal) is a federally incorporated Canada Not-for-profit Corporation (No. 1779509-2) stewarding the AgDR open standard. The Foundation holds the protocol in perpetual trust under a royalty-free, CC0 / Apache 2.0 dual license, ensuring no single entity can privatize or restrict its use.

What platforms and architectures are supported?

AgDR-AKI and AgDR-Mantle ship prebuilt wheels for Windows x64, Linux x86_64 and aarch64, macOS Intel and Apple Silicon, plus ARMv6l/ARMv7l via piwheels.org. The Rust crate compiles on any platform supported by the Rust compiler (MSRV 1.75.0). All Python wheels use the stable abi3-py39 ABI for forward compatibility across Python 3.9–3.14.

Does AgDR require post-quantum cryptography?

Post-quantum fortification is optional. The core AgDR-AKI crate uses Ed25519 + BLAKE3, which is sufficient for current evidentiary standards. For sovereign or long-term archival requirements, install pip3 install agdr-mantle to add ML-DSA-65 (FIPS 204) signatures, sparse Merkle tree witnesses, and Brotli compression without altering the hot-path latency.