Skip to main contentSkip to footer

    Top Rated & Verified

    Top Clutch App Development Company Black Owned United StatesTop Clutch Java Developers France 2026Top Clutch Service Line Blind Company Black Owned 2026Top Clutch App Development Company Minority Owned 2026Top Clutch Web Developers Black Owned 2026Top Clutch App Development Company Black Owned 2026Top Clutch Flutter Developers France 2026Top Clutch Health & Wellness App Developers France 2026Top Clutch Swift Company France 2026Top Clutch Machine Learning Company France 2026Top Clutch Chatbot Company France 2026Top Clutch Artificial Intelligence Company France 2026Top Clutch App Development Company Minority Owned Los Angeles
    Back to Blog
    Agent Infrastructure Guide
    September 27, 2026
    29 min read

    AI Agent Identity in 2026:Delegation Chains, Workload Identity, and the Protocols Racing to Contain Them

    Which agent is calling, on whose authority, through how many hops — and can you kill its access in real time when something goes wrong? Here is the infrastructure layer that became its own discipline in 2026, and the new research on what still breaks.

    AI agent identity and delegation chain architecture concept for 2026 — workload identity, cross-domain authorization, and agent-to-agent trust
    150+
    Organizations running Google's A2A protocol in production, one year after its donation to the Linux Foundation
    Google Open Source Blog, April 2026
    11
    Protocol-level A2A vulnerabilities found by the first systematic security analysis — exploitable under full spec compliance, no bug required
    arXiv:2609.10871 (A2ABreak), September 2026
    Aug 24, 2026
    Okta's Agent SSO reaches general availability, folding Cross App Access into core SSO as MCP's enterprise-managed authorization extension
    Okta Newsroom, 2026
    $28k–$70k
    Single-fleet agent identity build: scoped per-task delegation, centralized revocation, one governed identity platform, 4–9 weeks
    Frenchy Digital scoping bands, 2026

    Key Takeaways

    • Agent identity — knowing which specific agent is calling, on whose authority, through how many hops, and whether that authority can be revoked centrally — became a distinct engineering discipline in 2026, separate from sandboxing and credential scoping, as agents started calling other agents across organizational boundaries.
    • The confused deputy problem, applied to agents: most tokens today are scoped to the human or service account an agent runs as, not to the specific task in front of it, so an agent can typically do everything its human could, whether the task needs it or not.
    • RFC 8693's "act" claim (2020) is the finished standard underneath every newer proposal; the agent-specific extensions on top of it — IETF's identity-chaining and delegation-chain drafts — are active work in progress, not ratified standards, as of September 2026.
    • Four identity platforms now compete directly for this problem: Microsoft Entra Agent ID, Okta's Agent SSO (GA August 24, 2026, built on the open Cross App Access standard), Auth0's Auth for GenAI, and WorkOS's Agent Auth (early access since September 2, 2026) — each extending a different existing IdP relationship rather than one universal standard.
    • Workload identity (SPIFFE/SPIRE, CNCF-graduated since 2022) answers a different question than OAuth: not what a request is authorized to do, but whether the process making it is actually the software it claims to be — increasingly relevant as agent fleets spawn and reschedule constantly.
    • The first systematic security analysis of the A2A protocol (arXiv:2609.10871, ACSAC 2026) found 11 protocol-level vulnerabilities exploitable under full spec compliance, including credential harvesting from identity loss across multi-hop delegation chains — responsibly disclosed to and acknowledged by the Linux Foundation's A2A maintainers before publication.
    • Frenchy Digital cost bands: discovery and delegation-chain audit $9k–$22k; single-fleet identity build $28k–$70k; multi-fleet/cross-organizational build $70k–$180k; enterprise/regulated build $180k–$420k+.

    Why Agent Identity Became Its Own Discipline

    An agent that answers one question and hands back control does not need its own identity — the human asking it is identity enough. An agent that reads a support ticket, calls a billing API, hands a sub-task to a second agent, and that second agent calls a third-party service on a different company's infrastructure absolutely does, and 2026 is the year that second shape of deployment — agents calling agents, across organizational boundaries, unattended — went from an edge case to the default architecture for anything beyond a single-tool chatbot.

    The evidence is in how fast the identity industry moved to build for it. Microsoft shipped Entra Agent ID, extending its existing workforce identity governance to agents as first-class, auditable non-human identities. Okta brought the open Cross App Access standard into core Okta SSO on August 24, 2026, positioning it as the enterprise-managed authorization layer for the Model Context Protocol specifically. Auth0 — an Okta brand — took its Auth for GenAI platform generally available in November 2025 and added on-behalf-of token exchange for MCP in May 2026. WorkOS, the newest entrant, opened early access to Agent Auth on September 2, 2026, built from the ground up around agents having their own revocable identity rather than borrowing a human's. Four well-funded identity platforms converging on the same problem within roughly a year of each other is not a coincidence; it is a market responding to a gap that got expensive fast.

    The clearest technical signal of where this is heading: the Agent2Agent (A2A) protocol Google donated to the Linux Foundation in June 2025 passed 150 supporting organizations running it in production by its one-year anniversary in April 2026 — and within months, the first systematic security analysis of that same protocol found eleven exploitable identity- and delegation-related vulnerabilities in its specification, not its implementations. Production adoption and serious security scrutiny are arriving at the same time, which is exactly what you'd expect from infrastructure that went from novel to load-bearing faster than the security research could keep pace.

    This guide assumes you already have, or are about to build, agents that call other agents, other companies' APIs, or tools outside your own trust boundary — the point where identity, not just capability, starts to matter. If you're earlier in the decision of which orchestration framework to build on in the first place, our guide to AI agent orchestration frameworks covers that layer separately, and our multi-agent systems architecture guide covers when a multi-agent design is worth the added complexity at all.

    The Confused Deputy at Fleet Scale

    A confused deputy is a program with more authority than the task in front of it needs, misused because nothing ever narrowed it down. It is one of the oldest problems in computer security, and it is also, almost exactly, the default architecture most teams build their first agent with: the agent runs as a service account or inherits the calling user's token wholesale, so an agent built to summarize a customer's support history can typically also write to that customer's billing record — not because anyone decided it should be able to, but because the credential handed to it doesn't distinguish between the two.

    This is manageable, if uncomfortable, when there is exactly one agent and one human watching it. It stops being manageable the moment an orchestrator agent spawns a sub-agent to handle part of the task, and that sub-agent calls a third-party tool or a different company's API. WorkOS's own engineering writing on this makes the point plainly: authenticating a single agent is a solved problem — OAuth handles that — but the real challenge surfaces when an agent spawns another agent, which calls a third, which touches production data, and nothing in a typical token tracks that chain of custody.

    The sentence worth remembering from this section:a token scoped to a person or a service account answers "who is ultimately responsible for this," which matters, but it does not answer "which specific piece of software is acting right now, with how much of that person's authority, and can I turn just that piece off" — and the second question is the one that determines how bad an incident gets.

    The architectural fix several vendors in this space converge on independently is a two-identity model: the agent has its own identity, separate from the user or service account it is acting for, and its effective permissions at any moment are the intersection of what the user is allowed to do and what that specific agent is allowed to do — never simply "whatever the user could do." This is a different concern from sandboxing and credential scoping, which limits what a single agent's tool calls can do once it has a credential; agent identity is about knowing, and being able to prove and revoke, which agent is holding that credential and acting on it right now.

    Delegation Chains: Token Exchange and the "act" Claim

    The mechanism underneath nearly every serious proposal for agent delegation is not new — it is RFC 8693, OAuth 2.0 Token Exchange, published by the IETF in January 2020, years before agentic AI made the problem urgent. Token Exchange defines a protocol for one party to trade a security token for another, and it includes an act claim built specifically for delegation: it identifies the actor currently operating on behalf of a subject, and critically, the claim is nestable, so a single token can carry the full sequence of every actor that has held and passed it along.

    Concretely, this means a downstream system receiving a request can, in principle, look at the token and reconstruct the whole chain: this user authorized this orchestrator agent, which delegated to this sub-agent, which is the one actually making the call right now. Without this, every hop past the first collapses into invisibility — a tool or API three hops deep in a delegation chain sees only the original human's identity, with no record of which agent actually made the specific call, which is precisely the gap a compromised or misbehaving sub-agent exploits without anything downstream noticing.

    Standard / DraftStatus (checked Sept 27, 2026)What It Actually Adds
    RFC 8693 — OAuth 2.0 Token ExchangeFinished IETF standard, published January 2020The base token-exchange protocol and the nestable act claim every newer agent-delegation proposal builds on
    draft-ietf-oauth-identity-chainingActive IETF OAuth Working Group draftPreserves identity and authorization information as a request crosses trust domains — the piece aimed directly at agent-to-agent calls that leave your own organization
    draft-liu-oauth-chain-delegationIndividual submission, no working-group adoption yetProposes a structured delegation_chain JWT claim: an ordered array of delegation records with authorization-server attestation and optional cryptographic confirmation per hop

    None of the agent-specific extensions above are finished, ratified standards yet — only RFC 8693 itself is. That gap between "the base mechanism is a decade-old finished standard" and "the agent-specific chaining on top of it is still being drafted" is the single most important status fact in this entire space, and it is why every vendor platform covered in the next section is, underneath its own branding, implementing a proprietary version of the same not-yet-standardized idea.

    The Standards Racing to Formalize It

    Beyond the two chaining drafts above, a small cluster of related IETF work is moving in parallel, each aimed at a different sliver of the same problem: an individual draft on cross-domain authorization information sharing for agents describes the case where an orchestrator in one organization delegates authority to agents running in two others, and each receiving domain has to independently verify the delegation chain and confirm the delegated scope never exceeds what the originating principal actually authorized. A separate draft on attenuating agent tokens addresses scope narrowing specifically — making sure a token's authority shrinks, never grows, as it passes through each additional hop of a delegation chain.

    A useful, checkable signal of how unfinished this layer still is: a June 2026 academic gap analysis (arXiv:2606.31498) examined five agent interoperability protocols — MCP, A2A, ACP, ANP, and ERC-8004 — against a six-dimension governance taxonomy covering membership, deliberation, voting, dissent preservation, human escalation, and audit and replay. It found voting and dissent preservation universally absent across all five, and deliberation support absent or at best partial. That paper is about governance of agent communities, not identity specifically, but the finding matters here: even the protocols that have made real progress on knowing which agent is talking have made comparatively little progress on the layer above it — who gets a say, and how a decision an agent made gets contested after the fact.

    Practical takeaway: build your delegation-tracking today on RFC 8693's act claim, which is finished and stable, rather than waiting for the newer drafts to ratify. Treat the identity-chaining and delegation-chain-claim drafts as the direction things are heading and worth architecting toward, not a dependency to block a 2026 build on.

    The Vendor Landscape in 2026

    Six options now cover the practical range a team is likely to choose between: four identity platforms, each extending a different existing IdP relationship, plus one open workload-identity standard and one protocol-level discovery mechanism that sit underneath and beside the application-layer platforms rather than competing with them directly.

    Platform / ProjectCategoryWhat You're Actually GettingStandards It's Built OnStatus
    Microsoft Entra Agent IDWorkforce IdP extensionExtends Entra ID's existing service-principal and governance model to agents; introduces agent identity blueprints, blueprint principals, agent identities, and agent users as new object typesBuilt on Entra ID service principals; agent identities carry no credentials of their ownMicrosoft product, in active rollout — checked September 27, 2026
    Okta Agent SSO / Cross App Access (XAA)Workforce SSO extensionBrings the open Cross App Access standard into core Okta SSO at no added cost; adopted as the official enterprise-managed authorization extension for MCPExtension of OAuth 2.0 and OpenID Connect; 25+ native platform integrationsGeneral availability August 24, 2026 (Okta Newsroom)
    Auth0 Auth for GenAI (Token Vault, async authorization, FGA for RAG)Developer/CIAM platformLets a customer-facing agent fetch a user's provider access tokens at runtime — GitHub, Slack, Google Workspace, and custom providers — without the agent ever holding a raw API keyToken Vault built on RFC 8693 OAuth 2.0 Token ExchangeGenerally available November 2025; MCP/on-behalf-of exchange GA added May 2026. Auth0 is an Okta brand
    WorkOS Agent AuthAgent-native identity platform"Blueprints" define a permission ceiling and token lifetime per agent type; mints short-lived, scoped tokens per run; every token identifies the agent, who it acts for, and its own permissions; sessions revocable instantlyAuthKit can act as an OAuth 2.1 authorization server for MCPEarly access since September 2, 2026
    SPIFFE / SPIREOpen workload-identity standardIssues short-lived, cryptographically verifiable identities to the software process itself (not the account it runs as), verified via mutual TLS rather than a copyable bearer tokenCNCF specification (SPIFFE) plus its open-source runtime implementation (SPIRE)SPIFFE/SPIRE graduated CNCF September 2022; AI-agent-specific reference architectures are 2026 vendor material to verify independently
    A2A Signed Agent Cards + Agent Name ServiceProtocol-level, cross-organizationalSigned Agent Cards let a receiving agent cryptographically verify a discovered agent's identity claim; the proposed Agent Name Service adds DNS-based, federated lookup and verification across organizationsLinux Foundation-governed A2A protocol (v1.2+); ANS built on the existing Domain Name SystemA2A signed cards shipping in production; ANS is an announced intent (June 23, 2026), not yet a production service
    Methodology.We scored and verified only what a buyer can check directly: named general-availability and early-access dates, and which standard each platform says it builds on, each checked against the named vendor's own site or newsroom on September 27, 2026. We did not score or repeat any vendor's own claimed adoption numbers, security posture, or performance figures as an independently audited fact — those are noted as the vendor's own claims where they appear.

    The pattern worth naming: none of the four application-layer platforms is trying to be a universal, vendor-neutral standard. Each is explicitly built to extend whichever identity relationship you already have — Entra ID for a Microsoft shop, Okta for an Okta shop, Auth0 for a customer-facing product already using Auth0, and WorkOS for a team building agent identity without an existing enterprise IdP to extend. That is a healthier state than one company owning the whole layer, but it also means the interoperability burden — making an agent identity issued by one platform legible to a partner using a different one — falls on the IETF chaining drafts and protocol-level mechanisms covered in the rest of this guide, not on any single vendor.

    Identity Below and Between Agents

    Everything above operates at the application layer — a platform issuing a token that says what an agent is authorized to do. Two other layers matter and are frequently skipped: whether the process making a request is actually the software it claims to be, and whether a receiving agent can trust a stranger's claim of identity before ever talking to it.

    SPIFFE (Secure Production Identity Framework For Everyone), graduated by the Cloud Native Computing Foundation in September 2022 alongside its open-source runtime SPIRE, answers the first question. A workload — an agent container, an MCP server, any running process — receives a SPIFFE ID, a URI in the form spiffe://trust-domain/path, and a short-lived credential called an SVID, verified at connection time via mutual TLS rather than read out of a bearer token that anyone who intercepts it could replay. This matters more for agents than for ordinary web applications specifically because agent workloads spawn sub-processes, scale up and down, and get rescheduled onto different infrastructure far more dynamically than a typical service — an OAuth token can be correctly scoped and still be sitting on a process that isn't actually the software it claims to be. Infrastructure vendors including HashiCorp, Aembit, and Solo.io now publish reference architectures applying SPIFFE specifically to AI agent fleets; treat their specific implementation claims (rotation intervals, deployment topology) as vendor material worth verifying against your own environment, not settled fact, the same way we treat any single vendor's architecture claims throughout this guide.

    The second question — can a receiving agent trust a stranger's identity claim before talking to it — is what the A2A protocol's Signed Agent Cards and the proposed Agent Name Service are built to answer. An Agent Card is a JSON document an A2A-compatible agent publishes, describing its identity, capabilities, and how to authenticate with it; a Signed Agent Card adds a cryptographic signature over that document so a receiving agent can verify it actually came from the domain it claims to represent, rather than trusting an unsigned, self-asserted claim. The Linux Foundation announced its intent to build on top of this on June 23, 2026 with the Agent Name Service (ANS) — a DNS-based, federated identity, verification, and discovery layer meant to let agents be looked up and trust-checked across organizations the way domain names are today, without depending on any single company's proprietary registry. As of this writing, ANS is an announced intent open for industry participation, not a production service.

    The Model Context Protocol tightened its own piece of this in its 2026-07-28 specification release: MCP servers are now formally defined as OAuth 2.1 resource servers, authorization servers are required to return an issuer parameter per RFC 9207 that clients must validate before redeeming a code — closing a specific authorization-server mix-up hole — and client credentials are now bound to the specific issuer that minted them rather than being portable across issuers. Our guide to AI agent sandboxing and credential scoping covers MCP's OAuth 2.1 model as it applies to a single agent calling a single tool server; this specific hardening is about which issuer a client is willing to trust in the first place, which is the identity-chaining problem this article covers, applied at the MCP layer.

    A2ABreak: Eleven Vulnerabilities in the Protocol Built for This

    A protocol built specifically to let agents discover, authenticate with, and delegate to each other across organizational boundaries is also, by construction, the protocol where an identity or delegation failure has the widest blast radius — which is exactly why it drew the first systematic security analysis of its kind.

    A2ABreak (arXiv:2609.10871), accepted at the 42nd Annual Computer Security Applications Conference (ACSAC 2026), built the first finite-state-machine model of the complete A2A protocol interaction lifecycle — six stage-specific FSMs covering discovery, initiation, task execution, and interruption, merged into a unified model of 37 states and 76 transitions — and used it to systematically identify 11 protocol-level vulnerabilities, each exploitable under full specification compliance, meaning no implementation bug or misconfiguration is required to trigger them.

    Named examples from the research worth understanding individually: cross-client context injection through unprotected context identifiers, where one client's conversation context can bleed into another's; credential harvesting through identity loss across multi-hop delegation chains — precisely the chain-of-custody gap the delegation section above describes, now shown to be practically exploitable rather than theoretical; and data exfiltration through a rogue agent advertising capabilities in its Agent Card that it was never independently attested to actually have, which is the specific failure Signed Agent Cards are meant to close and evidence that signing alone does not close every version of the trust gap in discovery.

    Two things about how this research was conducted are worth knowing before drawing conclusions from it. First, the analysis tool itself achieved 73.3% precision and an 84.6% F1 score against independent expert review — a meaningfully strong result — while a zero-shot large language model given the same protocol specification and asked to find vulnerabilities produced zero confirmed findings, a useful, concrete data point on the current limits of asking a model to red-team a protocol specification directly rather than building dedicated tooling. Second, and more important for anyone currently running A2A in production: all eleven findings were disclosed to the A2A maintainers under the Linux Foundation before publication and have been acknowledged by them, which is the responsible-disclosure process working as intended, not a sign the protocol is unmaintained or the maintainers were caught off guard.

    The practical read: a protocol running in production at 150-plus organizations attracting this kind of rigorous, disclosed, acknowledged security research is a healthier sign than the alternative — a protocol nobody has bothered to break yet. Treat "we use A2A" the way you'd treat "we use OAuth": a real foundation, not a finished, hardened deployment on its own.

    The Governance Gap and Where Regulation Is Heading

    Two forces are converging on this space from outside pure engineering: academic governance research pointing out what the protocols still can't express, and an early legislative proposal describing, in policy language, almost exactly the same delegation and revocation problem this article covers as an infrastructure problem.

    The governance-gap research covered above found that voting and dissent preservation are universally absent across the five agent interoperability protocols it examined, and deliberation support is absent or at best partial. Applied plainly: today's protocols can tell you which agent is acting and, increasingly, on whose delegated authority — but none of them have a built-in mechanism for a human or another agent to formally contest a decision after the fact, or for a record of that dissent to travel with the delegation chain the way the act claim carries identity. That is a governance layer above identity, not a replacement for it, and it is worth naming as a known, unsolved gap rather than pretending the identity work covered in this guide finishes the job.

    On the regulatory side, Senator Mark Warner released a discussion draft — not an introduced bill, and not law — of the AI AGENT Act on June 29, 2026. It proposes a federally registered category of "custodial user agents": software a consumer authorizes to act on their behalf across large online platforms (defined as those with 50 million or more U.S. users or subscribers in the prior twelve months), with providers required to register with the FTC before accessing those platforms' interfaces. The draft's specific requirements read almost like a policy translation of this article's engineering recommendations: the relationship must be transparent, documented, limited in scope, and revocable, with verifiable requests, auditable records, agent identity verification, real-time revocation, and scope-limited delegation credentials. It also places privacy limits on secondary use of data an agent collects while acting for a consumer.

    Treat the AI AGENT Act as a signal of where policy attention is heading, not a compliance deadline — it has no bill number and has not been introduced as of this writing. If it does move toward introduction, the identity-verification and real-time-revocation language is the part most likely to become an actual engineering requirement, which is also, not coincidentally, the exact capability the vendor platforms covered earlier in this guide are already building toward for commercial reasons.

    Reference Architecture and the Order to Build It In

    Retrofitting agent identity onto a fleet that already assumes every agent shares one wide-open token is materially more expensive than building it in from the first agent — the steps below are ordered because doing them out of sequence tends to produce a system that looks identity-aware and isn't.

    StepWhat to DoType of ChangeWhat Goes Wrong If SkippedWhy This Order
    1Map every agent-to-agent and agent-to-tool call, and mark which ones cross a trust or organizational boundaryRead-onlyYou don't know where a wide-open, user-token-inherited call is quietly crossing a boundary it shouldn'tThe multi-hop calls are where delegation-chain loss and confused-deputy risk concentrate — find them before choosing a platform.
    2Pick an identity platform that extends the IdP you already govern humans throughInfra decisionA disconnected, parallel agent-identity system doubles your governance burden instead of extending itSee the vendor landscape above — each of the four major platforms is built to extend a specific existing IdP relationship.
    3Give every agent its own identity, distinct from the user or service account it runs asArchitecture changeWithout this, there is no way to later tell from a log whether a human or an agent acting on their behalf took a given actionThis is the single most common mistake teams make — see the FAQ on it.
    4Scope tokens to the task, not inherited wholesale from the calling userCode changeA task-scoped agent can only do what the specific task needs; a user-token-inherited agent can do everything the human can, whether the task needs it or notThis is the confused-deputy fix in practice, not just in theory.
    5Add workload identity (SPIFFE/SPIRE or equivalent) underneath the application-layer identity for agents that spawn, scale, or get rescheduledInfra additionAn OAuth token proves what a request is authorized to do; it does not prove the calling process is actually the software it claims to beMatters most for agent fleets running on infrastructure that reschedules workloads dynamically — see the workload-identity section above.
    6Build a delegation record — even a simple one — before you need full RFC 8693 act-claim chainingArchitecture changeWithout an auditable record of which agent did what, for whom, and when, an incident three hops deep is unattributable after the factStart simple; adopt the IETF drafts' fuller chaining model once your delegation depth and cross-domain calls justify it.

    Red Flags in Vendor Selection

    Red FlagWhy It Matters
    "We already have OAuth, so identity is solved"OAuth answers what a request is authorized to do. It does not, by itself, answer which specific agent is calling, whether that agent's process is what it claims to be, or how far a token's authority has traveled through a delegation chain — ask specifically how a compromised sub-agent three hops deep would show up differently in a log than the original human user.
    Every agent shares one service account's tokenThis is the confused-deputy setup described above, not a simplification — ask what would need to happen for someone to tell, after the fact, whether a specific action was taken by a human or by an agent acting semi-autonomously on their behalf.
    A vendor claims full compliance with "the" AI agent identity standardThere isn't one yet. RFC 8693 is finished; the agent-specific extensions on top of it are active IETF drafts, not ratified standards, as of September 2026 — ask which specific draft or internal implementation they actually mean.
    No named answer for how a delegated agent's access gets revoked in real timeRevocability is the specific requirement named in nearly every proposal covered in this guide, from WorkOS's instantly revocable sessions to the AI AGENT Act discussion draft's real-time revocation language. A platform with no clear answer here hasn't finished the design.
    "Our agent framework's built-in auth is enough"A framework's convenience auth typically authenticates the developer's API key, not the individual agent instance making a specific call at runtime — ask whether two concurrently running instances of the same agent are distinguishable from each other in an audit log.
    A single non-human-identity ratio presented as settled industry factThe vendor reports behind these figures disagree with each other by a factor of three or more with no shared methodology — see the methodology section below. Treat any single number here as a vendor's own telemetry, not a verified industry constant.

    What This Looks Like in Practice

    Consider a worked, illustrative scenario — not a real client engagement, and presented explicitly as one so the arithmetic is honest about what it is: a 60-person insurance brokerage runs an orchestrator agent that reads an incoming claim, delegates document verification to a specialist sub-agent, and that sub-agent calls a third-party fraud-check API run by a different company entirely. Under the wide-open pattern — every agent inheriting the calling adjuster's full token — the fraud-check vendor sees only the adjuster's identity on every call, with no record of which of the brokerage's several concurrently running claim-processing agents actually made a specific request.

    At a plausible volume of 400 claims a month, if even a modest fraction — say one claim in fifty — triggers a question during a later audit or a dispute about what data was shared with the third-party vendor and why, that is roughly eight incidents a month where the brokerage cannot answer "which agent, acting under what specific authorization, made this call" from its own logs, worked honestly from these illustrative assumptions and not a real measured client figure. Each one becomes a manual reconstruction effort — checking deployment timestamps, correlating server logs, interviewing the adjuster — that a proper delegation record would have answered in seconds.

    With agent identity in place — the orchestrator and the document-verification sub-agent each holding their own identity, a token scoped to the specific claim and task rather than inherited wholesale from the adjuster, and a delegation record naming both agents and the adjuster who initiated the claim — the same audit question is answered directly from the log: this specific sub-agent instance, delegated by this orchestrator, acting under this claim's scope, made this call at this time. The engineering cost of building this correctly, per the bands below, is real and worth budgeting for deliberately — but it replaces an open-ended, compounding audit-reconstruction cost with a one-time infrastructure investment, and it is the difference between an incident that takes minutes to explain and one that takes days.

    Methodology: What We Scored, and What We Refused To

    What we scored: named general-availability and early-access dates for each identity platform, the specific IETF draft or RFC status each proposal has actually reached, and named findings from the A2ABreak and governance-gap academic papers, all checked directly against the named source on September 27, 2026 and cited individually above.

    What we explicitly refused to score or present as neutral fact: any vendor's own claimed adoption numbers, deployment scale, or security posture beyond what is independently named and dated; and the cluster of "non-human identities outnumber humans" ratio statistics circulating in 2026, which we address directly below rather than silently omitting, since a reader who has seen one of these figures deserves to know why it isn't repeated here as settled fact.

    Checked September 27, 2026: GitGuardian's State of Secrets Sprawl report puts the non-human-to-human identity ratio at roughly 80-to-1; Palo Alto Networks' 2026 Identity Security Landscape report puts it at 109-to-1, up from 82-to-1 a year earlier; other vendor reports cite an average near 45-to-1, reaching 144-to-1 in cloud-native environments. Each figure comes from a different vendor's own customer telemetry, measured a different way, over a different population — there is no shared, disclosed methodology underneath any of them, and no way for a reader to independently reconcile a three-times spread between reports published in the same year. We name the cluster and its spread specifically rather than picking whichever number sounds most dramatic, and decline to print any single one as fact.

    A reader building the credential-scoping and blast-radius-limiting layer that sits alongside agent identity — a related but distinct concern — may also find our guide to AI agent sandboxing and credential scoping useful as a companion resource.

    What This Costs to Build

    EngagementPriceTimelineWhat's Included
    Discovery + delegation-chain audit$9k–$22k2–4 weeksMap every agent-to-agent and agent-to-tool call, flag which cross a trust boundary, recommend an identity platform fit for your existing IdP
    Single-fleet agent identity build$28k–$70k4–9 weeksAgent identities issued and governed through one platform, task-scoped delegation, centralized revocation
    Multi-fleet / cross-organizational build$70k–$180k9–16 weeksWorkload identity (SPIFFE/SPIRE) underneath application-layer identity, audited delegation chains across multiple agent systems
    Enterprise / regulated build$180k–$420k+14–24 weeksFull delegation-chain audit logging, documented revocation and incident-response posture, integration with existing IAM governance

    Senior-led delivery runs $150 to $225 per hour, ongoing retainers run $2,500 to $9,500 per month, and every engagement carries a 30-day post-launch warranty. Every proposal is written and fixed-price, delivered within five business days of a discovery call, whether the engagement fits one of the bands above or falls between them.

    Related engagements worth budgeting alongside agent identity rather than in isolation: the sandboxing and credential-scoping work covered in our companion guide, since a well-identified agent with an over-scoped credential still has an unbounded blast radius, and durable execution, because a delegation chain that spans a multi-day human approval wait needs the same crash-safe, resumable infrastructure as any other long-running agent workflow.

    Limitations and What We Could Not Verify

    • We could not independently verify any identity vendor's own adoption, deployment-scale, or performance claims beyond what is named and dated in a public, checkable source; where a vendor's own framing is used, it is attributed to that vendor rather than presented as neutral fact.
    • The IETF drafts covered in this guide — identity chaining, chain delegation, attenuating agent tokens, and cross-domain authorization information sharing — are active works in progress as of September 2026 and may change materially, be abandoned, or be superseded before reaching RFC status; treat their described mechanisms as the current direction, not a finished specification to build a hard dependency on.
    • The A2ABreak and governance-gap papers cited in this guide are recent (September and June 2026 respectively); A2ABreak has been accepted at ACSAC 2026, while the governance-gap paper's peer-review status was not independently confirmed by us beyond its arXiv posting — we cite both as serious, methodologically detailed research worth reading directly, not as settled, fully peer-reviewed consensus.
    • We could not verify a real, named Frenchy Digital client engagement that specifically matches this article's topic closely enough to describe honestly; the worked example above is explicitly an illustrative scenario, not a real client's numbers, and is labeled as such throughout.
    • Product names, general-availability status, pricing, and feature sets for every platform named in this guide move quickly; treat the dates attached to each claim as the date it was true, not as an assurance that it remains true when you read this.

    Give Your Agents Their Own Identity

    Book a free 60-minute discovery call with Frenchy Digital, a senior-led Black-owned Los Angeles agency. We map your agent-to-agent delegation chains and send a written, fixed-price phased proposal within 5 business days.

    1517 S Bentley Ave Apt 204, Los Angeles CA 90025

    Frequently Asked Questions

    Sources & References

    1. 1Auth0 — Announcing Auth0 for AI Agents: Powering the Future of AI, Securely↗
    2. 2Auth0 — Auth0 for AI Agents Is Now Generally Available (GA)↗
    3. 3Auth0 — Token Vault: Secure Token Exchange for AI Agents↗
    4. 4Microsoft Learn — What Is Microsoft Entra Agent ID?↗
    5. 5Microsoft Learn — What Are Agent Identities?↗
    6. 6Okta Newsroom — Okta Brings First-Class Identity to AI Agents with Agent SSO↗
    7. 7Okta Newsroom — Okta Introduces Cross App Access to Help Secure AI Agents in the Enterprise↗
    8. 8WorkOS Changelog — Agent Auth↗
    9. 9WorkOS Blog — Agent Registration with Auth.md↗
    10. 10WorkOS Blog — AI Agents and the Multi-Hop Delegation Problem↗
    11. 11CNCF — SPIFFE and SPIRE Projects Graduate from Cloud Native Computing Foundation Incubator↗
    12. 12GitHub — spiffe/spiffe: The SPIFFE Project↗
    13. 13Linux Foundation — Linux Foundation Launches the Agent2Agent Protocol Project↗
    14. 14Google Developers Blog — Google Cloud Donates A2A to the Linux Foundation↗
    15. 15Google Open Source Blog — A Year of Open Collaboration: Celebrating the Anniversary of A2A↗
    16. 16Linux Foundation — Linux Foundation Announces Intent to Launch Agent Name Service↗
    17. 17arXiv:2609.10871 — A2ABreak: Systematic Security Analysis of the A2A Protocol↗
    18. 18arXiv:2606.31498 — Governance Gaps in Agent Interoperability Protocols: What MCP, A2A, and ACP Cannot Express↗
    19. 19IETF Datatracker — draft-ietf-oauth-identity-chaining: OAuth Identity and Authorization Chaining Across Domains↗
    20. 20IETF — draft-liu-oauth-chain-delegation-00: Delegation Chain for OAuth 2.0↗
    21. 21IETF Datatracker — RFC 8693: OAuth 2.0 Token Exchange↗
    22. 22Model Context Protocol Blog — The 2026-07-28 Specification↗
    23. 23Model Context Protocol — Authorization Specification (2026-07-28)↗
    24. 24Sen. Mark Warner — Warner Unveils Discussion Draft of Legislation to Create Innovative Market for Secure Artificial Intelligence Agents↗
    25. 25Gartner Newsroom — Gartner Unveils Top Predictions for IT Organizations and Users in 2025 and Beyond↗
    Chris Machetto - CEO & Founder of Frenchy Digital

    Chris Machetto

    CEO & Founder of Frenchy Digital, a senior-led Black-owned Los Angeles agency building custom AI agents and the identity infrastructure that governs what they're allowed to do.