The Commonplace
Home Papers Evidence Explore Trends Syntheses Digests References Docs 🎲 Workforce Futures
← Papers
Direction, evidence grade, and study type are AI-generated labels (gpt-5-mini), not human-verified. Syntheses are LLM-written. "Tensions" are machine-detected candidates, not confirmed contradictions. A research-acceleration tool, not peer review. How this is built →

Enterprises must govern autonomous AI agents at runtime, not just at build-time: five irreducible primitives—discovery, identity, governance, attestation and supply-chain provenance—are required to bound agent authority and provide verifiable evidence. Implementing them works (four primitives in private pilots) but costs per-request latency, a sidecar per workload, and turns some availability failures into explicit denials.

Five Primitives for Governing Autonomous AI Agents at Runtime
Jiten Oswal, John Cadeddu · August 27, 2026
arxiv descriptive n/a evidence 7/10 relevance Full text usable extracted full text Source PDF

Structured author observations

Linked only from stored provider relations; the raw author line above is never matched by name.

Arxiv

Latest observation:

  1. Jiten Oswal unresolved corpus identity
  2. John Cadeddu unresolved corpus identity

Semantic Scholar

Latest observation:

  1. Jiten Oswal provider ID
  2. John Cadeddu provider ID
Runtime governance of autonomous AI agents requires five irreducible primitives—discovery, identity, governance, attestation, and supply chain—and the authors describe an implemented architecture (four primitives in private pilots) and its operational trade-offs.

Citation observations

Cumulative provider counts captured on specific dates; providers are never combined.

Enterprise deployments of autonomous AI agents inherit a control model built for human users and long-lived services, and the fit fails in three specific ways: agent principals are ephemeral, appearing and vanishing faster than provisioning; their actions are selected by a model rather than programmed, so the set of things they may attempt is not known in advance; and the population is discovered rather than provisioned, because anyone who can call an API can create one. We argue that governing such agents is a runtime problem -- not a model-alignment problem and not a build-time problem -- and we derive five primitives from the questions that must be answered before an action takes effect and after it has: discovery, identity, governance, attestation, and supply chain. For each we state what fails if it is absent and why the others cannot structurally supply it. We describe an implementation in which an agent's action is mediated against policy before it takes effect, authorised against a per-tenant action vocabulary, and recorded in a hash-linked signed ledger a third party can verify with the vendor out of the loop. We report what the architecture costs: the enforcement point sits on the request's critical path, identity requires a sidecar per workload, and fail-closed mediation converts availability incidents into denial. We are explicit about implementation status: four primitives are built and running in private pilots, and the fifth is built as separate tooling and not yet integrated into the request path. We keep it in the set deliberately: a five-part decomposition that exactly matches what its authors happened to build is not a taxonomy but a description of a codebase.

Summary

Main Finding

Governing autonomous AI agents is primarily a runtime problem that requires five irreducible primitives — Discovery, Identity, Governance, Attestation, and Supply Chain — each with distinct trust models, failure modes and timescales. The paper argues and demonstrates an architecture that enforces policy at request time (deny-by-default), authenticates ephemeral agent principals via workload attestation, writes verifiable audit records to a signed, hash-linked ledger that customers can independently verify, and treats supply-chain provenance as a cross-cutting (between-requests) condition. Four primitives are implemented and running in private pilots; the supply-chain primitive exists as separate tooling and is not yet in the request path.

Key Points

  • The problem framing

    • Agents differ from humans and long-lived services: they are ephemeral, choose actions at runtime (model-selected), and are discovered (anyone can instantiate one via an API). These properties make pre-deployment controls insufficient.
    • Runtime governance is distinct from model-alignment or build-time controls: you still need to bound authority and record decisions even for a "perfectly aligned" model.
  • The five primitives (derived from the sequence of questions to permit an action and to prove it later)

  • Discovery — Does this agent exist and what is it attempting? - Two halves: population discovery (enumeration, scanning) and capability discovery (an unrecognised attempted action signals missing policy). - Design rules: aggregate (upsert) rather than append per-attempt; record names, never values (avoid retaining unanalyzed data); discovery must be observability-only (must not be able to deny requests).
  • Identity — What is it, provably? - Use attestation-based workload identity: observe immutable workload properties and issue short-lived credentials; present identity at the transport layer (mTLS), not as a payload header. - Multiple vocabularies (storage, audit, policy) with canonical mappings; avoid storing derivable identifiers unnecessarily.
  • Governance — May it do this (decided before effect)? - Mediator sits on request path; deny-by-default; action vocabulary must be per-tenant and extensible (vendor cannot enumerate all agent actions). - Definitions must be immutably versioned so past audit records remain meaningful. - Disclosure (which fields are visible to policy) is a separate decision from authorisation and must be handled deliberately. - Kill switch consulted on each authorisation to stop running agents quickly (imposes strict latency/efficiency constraints).
  • Attestation — What happened, in a form others can check? - Every authorisation decision is written to an append-only, hash-linked ledger, canonicalised and signed by per-tenant keys (never exported). - Verification must be possible out-of-band (vendor-out-of-loop) so customers can independently answer disputes. - Exports must conservatively indicate completeness; errors in completeness must default to “false.”
  • Supply Chain — What is the agent made of, and has that changed? - Cross-cutting, operates between requests: provenance at deploy-time conditions future requests but can be invalidated by changes (pulled tags, transitive dependency updates, model endpoint changes, prompt/tool changes). - Without this, a compromised dependency can make all other primitives attest to a compromised-but-authentic-seeming agent.

  • Implementation & operational costs / trade-offs

    • Enforcement sits on the request critical path → adds latency and converts some availability incidents into authorization denials.
    • Identity requires a sidecar or equivalent per workload.
    • Deny-by-default plus discovery via refused attempts makes the governance loop self-updating but requires operator action to define new action types.
    • Attestation with vendor-out-of-loop verification reduces trust in the vendor but requires customer-side verification tooling and clearly specified export windows.
    • Four primitives are implemented and running in private pilots; supply-chain tooling is built but not yet integrated in the request flow.
  • What this is not

    • Not an empirical evaluation of outcomes. The paper reports design rationale, architecture, implementation status and honest failure modes rather than deployment-wide metrics.

Data & Methods

  • Method: conceptual derivation plus system design. The five primitives are derived from an analysis of the necessary questions that must be answered before an action takes effect and afterwards for auditability. The authors argue necessity and separability by examining what fails if any primitive is absent.
  • System architecture / components described and prototyped:
    • Agent-side sidecar for workload credential acquisition and presenting identity over mTLS.
    • Management server running: mediator (policy evaluation + action catalog), attestation factory and verifier.
    • Identity plane implementing attestation-based workload identity (short-lived credentials).
    • Append-only, hash-linked ledger (relational DB holding chain) with per-tenant signing keys in a KMS; exportable evidence packages for independent verification.
    • Discovery tooling: implemented as a library (scanning code, manifests, network behaviour) but not fully integrated; capability discovery is in the live mediation path.
  • Implementation status: four primitives (Discovery [capability discovery], Identity, Governance, Attestation) are built and running in private pilots. Supply-chain primitive (comprehensive provenance checking, BOM-style tooling) exists as separate tooling but is not yet in the request path.
  • Evaluation: no cross-deployment empirical outcomes presented. The account is design-plus-implementation and an honest reporting of failure modes and operational costs. Appendix traces one end-to-end action through the four built primitives and notes what supply-chain integration would add.

Implications for AI Economics

  • Risk allocation and moral hazard
    • Independent attestation and vendor-out-of-loop verification reduce information asymmetries between customers and providers. This should lower providers’ unilateral ability to conceal incidents and reduce moral hazard, but it increases upfront compliance and operational costs for customers (verification tooling, handling denials).
  • Compliance, liability and insurance markets
    • Verifiable, tamper-evident attestation records enable clearer liability assignments and drive demand for new insurance products around agent misbehavior and supply-chain compromise. Insurers and regulators can rely on independent evidence packages, making pricing and compliance enforcement more tractable.
  • Costs of adoption and concentration effects
    • The architecture imposes non-trivial fixed and operational costs (sidecars per workload, added latency, deny-by-default operational overhead). Larger platforms and vendors may absorb these costs more easily, potentially increasing vendor lock-in or platform concentration unless standards/interoperability reduce integration friction.
  • Productivity vs. transaction costs
    • Runtime governance enables safer deployment of autonomous agents, potentially accelerating automation and productivity gains. However, the transaction costs of defining per-tenant action vocabularies, handling discovery-driven policy updates, and verifying evidence may slow iteration and raise marginal costs of deploying new agent behaviors.
  • Market for attestations and provenance
    • The supply-chain primitive (provenance, BOMs for agentic systems) creates an information good with economic value. Markets can emerge for third-party provenance attestations, certified components, or trusted registries of model/tool provenance. Such markets change pricing power (trusted components can command a premium).
  • Externalities and social welfare
    • Fail-closed mediation turns certain availability incidents into denials, creating negative externalities (downtime, lost functionality). Firms and regulators will need to balance safety against availability; this trade-off can influence sector-level resilience and social welfare calculations when autonomous agents are used in critical domains (finance, healthcare).
  • Incentives for standardization
    • Per-tenant, vendor-authored action vocabularies and custom discovery mechanisms risk fragmentation. Standards for action vocabularies, attestation formats and export windows would lower coordination costs, reduce lock-in, and enable interoperable verification ecosystems (improving market efficiency).
  • Competitive advantage and product differentiation
    • Firms that offer robust, low-latency governance stacks, easy supply-chain integration, and user-friendly independent verification will have a competitive edge. Conversely, vendors that impede independent verification face reputational and regulatory risks.
  • Labor and organizational impacts
    • The governance loop (attempt → refused → visible → define → governable) institutionalizes an operator burden for defining behaviors and authorising new actions. This creates new operational roles and labor demand (policy authors, verifiers), altering the division of labor between humans and automation.
  • Regulatory implications
    • Verifiable attestation and independent verification can enable more practical enforcement of auditability and reporting requirements. Regulators may mandate aspects of these primitives (e.g., independent attestability, provenance reporting), which would reshape compliance costs across firms.

Overall, the paper identifies a concrete, implementable stack for making autonomous agents governable at runtime and highlights the trade-offs. For AI economics, the architecture changes information flows, shifts compliance costs, creates new market opportunities (attestations, provenance services, verification tooling), and affects market structure through fixed-cost and standardization dynamics.

Assessment

Paper Typedescriptive Evidence Strengthn/a — The paper provides conceptual argumentation and an engineering implementation report (four primitives in private pilots) but offers no empirical evaluation, causal identification, or measured outcomes; therefore there is no empirical causal evidence to rate. Methods Rigormedium — The authors present a clear, logically derived decomposition and describe an implemented architecture with honest discussion of trade-offs and residual trust assumptions; however, there is no systematic empirical evaluation, benchmarking, threat modelling results, or user/enterprise deployment metrics to validate effectiveness or costs at scale. SampleNo empirical sample or population study. Work consists of design and architecture plus an implementation: a mediator (policy evaluation and action catalog), attestation factory and verifier, workload identity plane issuing short-lived credentials, an append-only hash-linked signed ledger (relational DB + KMS per tenant), and a sidecar per workload; four primitives are running in private pilots, the supply-chain primitive exists as separate tooling but is not yet integrated into the request path. Themesgovernance adoption org_design human_ai_collab innovation GeneralizabilityNo measured outcomes or deployment-scale evidence; effectiveness and costs unquantified., Implemented as a vendor system and tested only in private pilots — may be vendor- or codebase-specific., Operational costs (latency, sidecar footprint, availability trade-offs) may differ across cloud/on-prem and small vs large enterprises., Does not cover all agent architectures (e.g., fully air-gapped agents, highly distributed agents, or edge deployments) or varied threat models in regulated industries., Policy and legal environments (compliance, data residency) will affect applicability.

Claims (13)

ClaimDirectionOutcomeConfidence & EvidenceDetails
Autonomous AI agent governance is primarily a runtime problem rather than a model-alignment or build-time problem. Governance And Regulation positive Suitability of runtime governance for autonomous AI agents
Reading fidelity high
Study strength low
not reported
0.09
The paper argues that five primitives are necessary for governing autonomous AI agents: discovery, identity, governance, attestation, and supply chain. Governance And Regulation positive Completeness of the proposed governance decomposition
Reading fidelity high
Study strength low
not reported
0.09
Existing human IAM controls can destroy attribution when an agent uses a human's credentials, because downstream logs cannot distinguish the agent's action from the human's action. Governance And Regulation negative Ability to attribute actions to the responsible principal
Reading fidelity high
Study strength low
not reported
0.09
API gateways and network policies are insufficient for many agent-governance decisions because they generally control routes or reachability rather than action parameters. Regulatory Compliance negative Parameter-level authorization of agent actions
Reading fidelity high
Study strength low
not reported
0.09
The proposed governance mediator authorizes actions before they take effect and denies any action for which no policy permits execution. Regulatory Compliance positive Pre-execution authorization of agent actions
Reading fidelity high
Study strength medium
not reported
0.18
The proposed system uses per-tenant, customer-authored action vocabularies rather than a fixed vendor-shipped enumeration of governable actions. Governance And Regulation positive Extensibility of agent action governance
Reading fidelity high
Study strength low
not reported
0.09
Unknown agent actions are refused, recorded, attributed, and surfaced to an operator so they can potentially be defined and governed later. Governance And Regulation positive Discovery and subsequent governability of previously undefined agent actions
Reading fidelity high
Study strength low
not reported
0.09
The architecture records every authorization decision in an append-only, hash-linked, signed ledger that customers can verify independently without the vendor's systems. Governance And Regulation positive Independent verifiability and integrity of governance records
Reading fidelity high
Study strength medium
not reported
0.18
A kill switch consulted on every authorization request allows revocation to take effect on an agent's next action rather than waiting for credential expiry. Ai Safety And Ethics positive Speed and effectiveness of stopping an already-running agent
Reading fidelity high
Study strength medium
not reported
0.18
Supply-chain controls remain necessary even when identity, authorization, and attestation operate correctly, because a compromised dependency can produce a legitimately authenticated and authorized agent. Ai Safety And Ethics negative Ability of runtime governance controls to detect compromised agent composition
Reading fidelity high
Study strength low
not reported
0.09
The architecture imposes operational costs: request enforcement adds critical-path latency, workload identity requires a sidecar for each workload, and fail-closed mediation converts availability incidents into denials. Organizational Efficiency negative Operational availability and overhead of runtime governance
Reading fidelity high
Study strength medium
not reported
0.18
Four of the five primitives were built and running in private pilots, while supply-chain functionality was built as separate tooling but had not yet been integrated into the request path. Governance And Regulation mixed Implementation maturity and integration status of the governance architecture
Reading fidelity high
Study strength medium
not reported
0.18
The paper does not provide an empirical evaluation of measured outcomes across a deployment population. Other null_result Empirical deployment outcomes
Reading fidelity high
Study strength high
not reported
0.3

Notes