
By Ron Bowron
Walking the expo floor at Mandalay Bay during Identiverse 2026, it was impossible to miss the sea of "Agent Identity" banners. If you closed your eyes, you’d think the identity community had completely solved the next generation of access management. But if you opened them and looked closely at what was actually being sold, a collective sense of illusion set in.
This friction point was well articulated by Chris Hood in his recent critique, where he argued that nearly 100 vendors are essentially putting a new coat of paint on old enterprise tech—treating an autonomous AI agent as a glorified application-layer service account.
Later that week, I sat in on the Identity At Center (IDAC) Live Podcast recording. Listening to unfiltered minds cut through the vendor marketing noise, one panelist dropped a heavy dose of pragmatism that seemed to resonate with most in attendance:
"We don't need more standards. We need to actually get the existing standards we already have properly implemented."
That argument has real merit. In the identity space, we suffer from chronic "shiny object syndrome." Before an enterprise can fully roll out robust, verifiable credential profiles, we are already distracted by the next working group draft. The panel was entirely right—if we simply applied a strict, zero-trust "deny until granted" philosophy using our existing, mature identity frameworks, we would close the vast majority of our current exposure windows.
And yet, looking at the sheer velocity of the autonomous AI workforce, Chris Hood’s proposed Agent Transfer Protocol (AGTP) is an IETF Internet-Draft that demands a serious look. Why? Because it directly addresses the sheer, unsustainable weight that the application layer is currently trying to carry.
In the traditional enterprise, a human uses an application. In the agentic world, a human sponsors automation.
When a user fires up an on-the-fly instance of an orchestration loop like OpenClaw or an ephemeral Hermes task, that agent doesn't need a heavy, permanent Active Directory account. It needs an ephemeral, cryptographic "visa" explicitly tied to the human who initiated the task, maintaining a clear line of accountability and blast-radius control.
To achieve this, two major technical philosophies are emerging. One tackles the problem by beautifully implementing standard data profiles at the application payload layer; the other handles it directly on the network wire.
To map out the future of this space, we have to look at these two architectural approaches head-to-head.
AuthZEN standardizes fine-grained authorization at the application layer (Layer 7). With its recent updates—COAZ for Model Context Protocol (MCP) tool authorization and AARP for asynchronous human-in-the-loop approvals—it represents exactly what the IDAC panel championed: taking existing open architectures and formalizing them into clean, implementable patterns to govern agent tool-calling.
The Agent Transfer Protocol (AGTP) combined with W3C Decentralized Identifiers (DIDs) shifts identity down to the network substrate (running on a dedicated port like 4480). It completely bypasses the application layer during initial verification, stamping a 256-bit cryptographic hash derived from an unchangeable "Agent Genesis" document directly onto the packet headers.
Critics of the decentralized identity and AGTP model may point to a critical corporate liability: If an agent's identity is dynamically bound to a specific human sponsor, what happens when that employee leaves the company? If an identity is built on-the-fly, how does an enterprise transfer ownership without breaking operational pipelines or losing the agent's historical audit lineage?
To steel-man this architecture, we can borrow a proven primitive from the Self-Sovereign Identity (SSI) Governance Framework: The Stewardship Model.
In the physical world, a minor child has an independent identity from birth, but they lack legal capacity. SSI frameworks handle this by assigning parents or guardians as Stewards within the child's DID document. The parent holds and manages the private keys on behalf of the child. When the minor comes of age, a cryptographic key rotation ceremony seamlessly hands direct sovereignty over to the individual.
By applying this to Sponsored Agents, we solve the corporate continuity problem:
The agent's birth certificate, lineage, and historical attribution trail remain perfectly intact on the wire, while the corporate governance chain updates instantly.
We don't have to wait for the IETF to fully ratify AGTP as a formal internet standard to start moving in this direction. As the IDAC live panel rightly argued, the tools are already in our hands. If we want to transition from unmanaged application name tags to human-sponsored wire controls, engineering teams can take three practical actions today:
Do not let unauthenticated agent scripts or browser bots hit your application endpoints to check an API key. Utilize your existing API gateways or reverse proxies (like Envoy, Traefik, or Aembit) to mandate Mutual TLS (mTLS) for all automation traffic. If an on-the-fly script or a Playwright bot cannot present a valid, enterprise-signed client certificate, drop the traffic at the TLS handshake.
Don't write bespoke, hardcoded permission checks inside every new microservice. Implement the OpenID AuthZEN COAZ profile to map your agents' Model Context Protocol (MCP) or REST tool calls into a standardized Subject-Action-Resource-Context (SARC) structure. This centralizes your policy definitions, allowing you to intercept agent intent uniformly across the enterprise.
While we wait for native port 4480 routing to mature, you can prototype the future of AGTP by baking its core primitives into your existing HTTP/443 headers. Force your agent orchestration frameworks to inject three custom headers on every call:
By forcing your current gateways to inspect and validate these specific boundaries before forwarding requests to the application code, you drastically reduce the processing burden on your backend.
The IDAC panel was correct: we must stop chasing novel frameworks and focus on execution. But AGTP is worth fighting for because it acts as a relief valve for those application-layer implementations. By pairing the two, we get a layered security model that elegantly solves the industry's two parallel headaches: Structured API Agents and Unstructured UI Browser Bots.
For structured AI agents interacting via clean developer interfaces (like MCP or REST), AGTP + DID acts as the ultimate transport-layer checkpoint. It validates the agent's cryptographic "birth certificate" at the wire, offloading heavy validation math away from the application.
Once approved at the perimeter, AuthZEN’s COAZ profile takes over inside the application layer, parsing the agent's tool-calling intent against the sponsoring human's corporate entitlements. It ensures structured code cannot drift past its boundaries.
The messier frontier involves browser-driven automation—like Chromium or Playwright scripts that mimic a human navigating a User Interface. These bots walk through the front door, clicking DOM elements and bypassing API gateways completely. We cannot force a vanilla browser bot to speak AGTP, but we can apply the same transport-level "deny until granted" philosophy.
By mandating Mutual TLS (mTLS) or secure hardware device attestation within the browser context, the infrastructure can instantly drop uncredentialed headless bots at the transport layer. For sponsored automation that passes the wire check, next-gen Web Application Protection (WAAP) and proxies apply the contextual layer—acknowledging the session token belongs to an "Automated Workload" and locking the bot into a sandboxed, low-privilege view of the DOM.
Whether an agent is querying a database via a dedicated AGTP port or clicking an enterprise dashboard via Playwright, the core architecture remains identical. We use the transport layer to verify identity and block unauthorized traffic at a zero-trust perimeter, and we use the application layer to enforce human-sponsored intent.
By aggressively implementing the fine-grained standards we have today, and backing them with a network-wire relief valve like AGTP, we can finally build a secure, human-sponsored perimeter for the autonomous workforce.