Add idea: credential-less agent processes#8
Merged
rkoster merged 1 commit intoJul 8, 2026
Conversation
rrashidov
requested review from
beyhan,
itsouvalas,
rkoster and
wayneeseguin
as code owners
July 8, 2026 13:14
rkoster
approved these changes
Jul 8, 2026
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.
What is this idea about?
Credentials handed to an agent process — API keys, OAuth tokens, bound service credentials — are one prompt injection away from exposure. The process that can call the model is also the process that can be told to print its environment.
The proposal: CF should let a developer bind a provider without the credential ever entering the process. The developer declares the binding in the manifest (e.g.
bindings: [anthropic]); at runtime the app calls alocalhostsidecar that proxies the request to the real provider using a credential it holds but the app cannot read. From the app's perspective it speaks the standard provider API — it just never sees the key. Revoking or rotating the credential is an operator action, not a redeployment. How the credential is stored, how the sidecar is provisioned, and how per-user multi-tenant bindings work is left open for platform experts to propose.Checklist
ideas/with a lowercase kebab-case filename (ideas/credential-less-agent-processes.md)title:present)identity,sandboxing-isolation)Related
localhostsidecar is a natural fit for the egress proxy in PR Add idea: localhost-only egress for agent workloads #7 —ideas/localhost-only-egress-for-agents.mdideas/stronger-workload-isolation-for-agents.md