← Blog

    What Is the AI Execution Integrity Framework (AIEF) — And Why AI Systems Need It Now

    NexArt Team6 min read

    AI systems are no longer just generating content.

    They are making decisions that affect credit approvals, insurance pricing, hiring outcomes, fraud detection, and access to services.

    As these systems move deeper into real workflows, one question becomes unavoidable:

    Can you prove what actually happened in a decision?

    Not approximately.

    Not from scattered logs.

    But with evidence that still holds up months later.

    Right now, there is no widely adopted standard that clearly defines what verifiable AI execution means in practice.

    That is the gap the AI Execution Integrity Framework (AIEF) is trying to address.

    Full draft spec: github.com/artnames/AIEF

    The Problem: AI Systems Without Defensible Evidence

    Most AI systems today are built around:

    • logs
    • traces
    • metrics
    • dashboards

    These are useful for operations.

    They are much weaker when the question becomes:

    • What inputs and context shaped this decision?
    • Which model and version produced the output?
    • Which external tools influenced the result?
    • Has this record been modified since it was created?
    • Can someone verify it without trusting the original application?

    In regulated or high-impact environments, these are not optional questions.

    They are review questions. Audit questions. Dispute questions.

    And most systems cannot answer them well.

    Why Logs Are Not Enough

    Logs create a narrative of events.

    They do not guarantee:

    • integrity
    • completeness
    • portability
    • independent verification

    They are often:

    • mutable
    • fragmented
    • environment-dependent

    In practice, this means:

    logs require trust in the system that produced them.

    That is exactly the problem.

    When a decision needs to be defended later, trust is not enough. You need evidence.

    The Shift: From Observability to Execution Integrity

    As AI systems move into higher-impact roles, the standard changes.

    It is no longer enough to know that a workflow ran.

    The real question becomes:

    Can the decision record be preserved, checked, and trusted later?

    This is where AIEF comes in.

    What Is AIEF?

    The AI Execution Integrity Framework (AIEF) is a proposed framework for defining what it means for an AI decision artifact to be:

    • complete
    • tamper-evident
    • deterministically verifiable
    • portable over time

    At its core, AIEF introduces a simple but important idea:

    Important AI decisions should be treated as preserved artifacts, not just operational logs.

    Definition: Execution Artifact

    An execution artifact is a structured, machine-verifiable record of an AI execution, including relevant inputs, context, parameters, and outputs, designed to support deterministic integrity verification.

    This is the central object in AIEF.

    Instead of relying on scattered logs, the framework centers around one preserved decision artifact.

    What AIEF Is, And What It Is Not

    AIEF is careful about scope.

    AIEF focuses on:

    • completeness of the artifact
    • tamper-evidence over a protected set
    • deterministic verification
    • long-term traceability
    • chain integrity for multi-step workflows

    AIEF does not try to prove:

    • that the decision was correct
    • that it was fair or unbiased
    • that the system acted in good faith
    • that future model runs will produce the same output

    That distinction is one of the most important parts of the framework.

    AIEF is about integrity of the record, not correctness of the outcome.

    Integrity Without Determinism

    Many AI systems are probabilistic.

    That means "replay" cannot reasonably mean:

    • rerun the model
    • get the same output
    • reproduce every external dependency

    AIEF handles this with a very practical idea:

    Cache-as-Truth

    The recorded output is treated as authoritative for audit.

    Verification does not try to reproduce the decision.

    It asks a narrower and more useful question:

    Has this artifact been altered since it was created?

    That makes the framework viable for real AI systems, not just deterministic software.

    The Core Components of AIEF

    AIEF defines a set of building blocks for execution integrity.

    1. Execution Artifact

    The structured record of the decision.

    2. Protected Set

    The subset of fields that must be integrity-protected.

    If any of these change, verification must fail.

    3. Stability Scheme

    A deterministic serialization method so the same logical artifact always produces the same representation.

    4. Integrity Proof

    A mechanism such as a cryptographic hash or signature that detects tampering.

    5. Deterministic Verifier

    A verifier that returns clear results like:

    • PASS
    • FAIL
    • reason codes

    This is what turns the artifact into something that can be independently checked.

    Example: A Minimal Execution Artifact

    Here is a simplified example of what an execution artifact can look like:

    {
      "executionId": "exec_123",
      "issuedAt": "2026-02-26T10:00:00Z",
      "workflowId": "credit-decision",
      "model": "gpt-4.1",
      "inputs": {
        "applicantScoreHash": "sha256:abc..."
      },
      "outputs": {
        "decision": "DENY"
      },
      "integrity": {
        "stabilitySchemeId": "aief.stable.v1",
        "proof": {
          "type": "sha256",
          "value": "xyz..."
        },
        "protectedFields": [
          "executionId",
          "inputs",
          "outputs"
        ]
      }
    }

    A verifier evaluates this artifact and returns:

    {
      "result": "PASS",
      "checks": {
        "integrityValid": true
      }
    }

    This does not prove the decision was correct.

    It proves that the protected parts of the record have not been altered since issuance.

    The Conformance Levels

    AIEF defines four cumulative levels.

    Level 1, Artifact Capture

    Basic traceability.

    A system emits execution artifacts.

    Level 2, Tamper-Evidence + Deterministic Verification

    The practical baseline.

    A system defines a protected set, adds integrity proof, and provides deterministic verification.

    Level 3, Portability + Independent Validation

    Artifacts can be exported and verified outside the originating environment.

    Level 4, Chain Integrity + Dependency Traceability

    Designed for agentic and multi-step workflows.

    Steps are linked, dependencies are recorded, and insertion or reordering becomes detectable.

    For most teams, Level 2 is the right starting point.

    For agent workflows, Level 4 becomes much more important.

    Why This Matters for Modern AI Systems

    AIEF is especially relevant when:

    • decisions affect users, money, access, or compliance
    • systems depend on external APIs or tool calls
    • workflows involve multiple steps or agents
    • outputs may be challenged later
    • records need to remain interpretable over time

    Examples include:

    • lending and underwriting
    • fraud and AML workflows
    • hiring systems
    • policy enforcement
    • public-sector eligibility
    • agent-based operational decisions

    In all of these, the question is not just:

    What did the system decide? It is: Can we prove how that record was produced and that it has not changed since?

    From Framework to Implementation

    AIEF is designed to be implementation-agnostic.

    But these ideas are not theoretical.

    They can already be implemented in production systems.

    For example, NexArt's Certified Execution Records (CERs) apply many of the same ideas in practice:

    • structured execution artifacts
    • tamper-evident integrity proofs
    • deterministic verification
    • support for multi-step and agent workflows
    • public and independent verification surfaces

    That is important because AIEF should not be read as an abstract standards exercise.

    It describes a class of capabilities that can already be built and used today.

    A Practical Starting Point

    You do not need to overhaul your whole system to begin.

    A practical starting point is:

    1. Choose one high-impact workflow
    2. Capture a structured artifact for each decision
    3. Define a protected set of meaningful fields
    4. Add a deterministic integrity proof
    5. Implement a verifier that returns PASS or FAIL
    6. Preserve artifacts with retention and export rules

    For agent systems, extend this with:

    • tool call evidence
    • chain integrity
    • step ordering

    That is where execution integrity starts becoming real.

    Why This Is Emerging Now

    AIEF is appearing at the right moment.

    Three things are converging:

    1. AI systems are making more consequential decisions
    2. Regulatory and audit pressure is increasing
    3. Logs and traces are proving insufficient as evidence

    That creates demand for a new layer:

    execution integrity infrastructure

    AIEF is an attempt to define that layer before the industry fragments around inconsistent assumptions.

    Explore It in Practice

    Reading about execution integrity is useful.

    Seeing it is better.

    If you are building systems where decisions may be challenged later, start with one workflow and make it verifiable.

    That is where this stops being theory.

    Final Thought

    Most AI systems today are built to perform.

    The next generation will need to be built to withstand scrutiny.

    The question is no longer:

    Can your AI make a decision?

    It is:

    Can you preserve and verify the record of that decision without asking people to simply trust you?

    That is the problem AIEF is trying to solve.

    Share this article