Add idea: agent identity and tool authorization - #36
Open
wayneeseguin wants to merge 1 commit into
Open
Conversation
wayneeseguin
requested review from
beyhan,
itsouvalas and
rkoster
as code owners
August 12, 2026 17:34
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Proposes closing a fourth platform gap: managed agent platforms are converging on the same identity pillar (workload identity, credential vault, and delegated outbound auth). AWS ships all three; Google, Azure, and Anthropic ship parts of it. CF already operates most of the parts: Diego instance identity certs, UAA, and CredHub, which already accepts instance identity certs as an mTLS client credential. What's missing is a runtime authorization model connecting them.
Three layers:: a precondition, a proposal, and a direction:
RFC-0055 default-deny route policies as reachability-level authorization; no new components.
UAA accepts instance identity certs as a client credential (RFC 8705/8693, neither implemented today) and mints short-lived workload tokens. CF-hosted MCP servers get most of an OAuth 2.1 authorization server, and the credential-less sidecar holds scoped tokens instead of provider keys for tools that trust UAA.
delegation chains per the AOAT draft: the platform records user → agent → tool authority; the tool enforces.
The note names the alternative it has to beat (SPIRE plus an off-the-shelf OAuth server, brokered as a marketplace service, zero platform delta) and the real problem: CF authorizes humans at deploy time, and nothing authorizes workloads at runtime. A workload-credential grant expands UAA's attack surface, per-operation scopes explode across hundreds of tools, and autonomous pipelines have no user present for the consent step AOAT assumes.
Mirrors RFC-0055 (the inbound half) and builds on the merged
open-agent-auth.mdnote. Sibling tocredential-less-agent-processes, whose sidecar this gives a standard, short-lived token to hold.