September 17, 2026 · 8 min read
One Authorization, One Commit Boundary
How to consume approval, reserve constraints, issue scoped authority, and hand off evidence without pretending an external side effect is atomic.
September 17, 2026 · 8 min read
A target design for workload identity, credential brokering, short-lived grants, audience restriction, and isolated execution.
An agent needs context to plan an action. It rarely needs the credential that performs the action.
Putting provider secrets into prompts, tool results, memory, or general-purpose agent state expands the exposure surface. The secret can appear in traces, retries, summaries, screenshots, model input, or a later tool call. Redacting logs after the fact does not repair a design in which the planning plane possessed broad execution authority.
Evidence boundary: This article is part of Independent Product R&D and documents a Target Reference Architecture. It describes intended controls, not measured performance or operational assurance.
The target property is narrower and testable: the agent works with references and authorized intent, while an isolated executor obtains only the downstream credential required for the approved action at the execution edge.
“The agent identity” is not one thing. A governed transaction crosses at least four identity concerns:
Each identity proves something different. Authenticating an agent does not prove user authority. Authenticating a workload does not let it choose different terms. Possessing a provider credential does not establish that a particular transaction was approved.
The SPIFFE workload identity model is useful context for this separation: it treats a workload as a software unit with its own short-lived identity rather than borrowing a human identity. The target architecture remains protocol-neutral, but the principle is broadly applicable.
The planning plane needs to know that an eligible execution method exists, which capabilities it supports, and which constraints apply. It can operate on an opaque credential reference such as “approved purchasing instrument for this tenant and category.” It does not need the underlying secret value.
References should reveal as little as possible while remaining usable for policy. They may carry non-sensitive metadata—credential class, allowed action family, tenant, status, or a display label—but they should not be convertible into provider authority by the agent itself.
When a proposal is authorized, the control plane issues a scoped execution grant. The isolated executor presents that grant and its workload identity to a credential broker. Only then does the broker resolve the approved reference into provider access for the permitted audience and action.
Conceptual target design. This diagram communicates intended trust boundaries and control flows; it is not a deployment topology or claim of production operation.
The model sees transaction context but never the provider secret; the broker releases a credential only to the isolated executor for the authorized audience.
The agent coordinator operates on intent and redacted transaction context outside the credential boundary. After authorization, the isolated executor presents a scoped grant to the credential broker. The broker validates audience, action, tenant, workload, and expiry, then supplies the downstream credential only inside the execution boundary. The external provider response returns without exposing the credential to model-visible state.
The boundary is a responsibility model, not a deployment map. The broker and executor might be separate processes or stronger isolation units, but public content should not infer security from a box label. The controls that matter are verifiable identity, least privilege, explicit audience, constrained lifetime, isolated handling, and fail-closed behavior.
A grant is not a smaller version of a broad API key. It represents the authority created by one authorization decision. Its verifier should be able to determine:
OAuth security best current practice recommends minimum privilege and audience restriction, and discusses sender-constrained access where feasible. Those are helpful design inputs, not proof that a particular target implementation provides them. Every claimed property still needs implementation and concurrency tests.
Short lifetime reduces exposure but does not replace scope or audience checks. A broad credential can do substantial harm during a brief window. Conversely, a narrowly scoped grant with no revocation or replay strategy can remain dangerous after the transaction has changed.
The credential broker should make deterministic decisions from authenticated workload identity, verified grant claims, current credential status, tenant boundary, and provider audience. It should not call the model to decide whether access “seems reasonable.”
On rejection, return a minimal reason such as expired grant, audience mismatch, revoked reference, or unavailable provider access. Do not return the credential, a secret-bearing diagnostic, or a configuration dump. The agent can use the reason to request a new decision without learning protected material.
The Model Context Protocol elicitation guidance illustrates a related boundary: sensitive authentication information should use a dedicated interaction path rather than ordinary agent-visible form data. The target design generalizes that concern to transaction execution.
Standards references last reviewed: 17 September 2026.
Consider a fictional data-purchase workflow. All names and values in this example are illustrative.
An analyst asks an agent to obtain a licensed market report within an approved research budget. The agent finds an eligible report and proposes the exact product, publisher, license class, and price ceiling. Policy approves the proposal under a bounded delegation.
The agent receives an authorization reference, not the publisher credential. An isolated purchasing workload presents its identity and the scoped grant to the broker. The broker verifies that this workload may use the tenant’s research-purchase credential for that publisher, product, price ceiling, and validity window. Access is made available only for the execution attempt. The executor sends the request and returns a filtered result containing the provider reference and receipt evidence.
If the agent changes the report edition after authorization, the broker does not “helpfully” reuse the credential. The transaction binding no longer matches, so the attempt returns for a new policy decision. If the broker cannot verify the workload identity, it denies credential access even when the proposal itself was approved.
Credential isolation fails if a secret can re-enter the agent through an error message, provider echo, trace attribute, or debugging attachment. Treat output filtering as part of the boundary:
Observability needs deliberate correlation. Use transaction and execution identities to connect traces rather than copying credentials into logs. Audit evidence should show that a broker decision occurred and which constraints it evaluated, while access controls protect any sensitive operational detail.
Caching can quietly weaken an otherwise careful broker. If an executor caches resolved credentials beyond the authorized operation, the effective lifetime and scope may exceed the grant. The design should define whether caching is forbidden, bound to one execution context, or invalidated by expiry and revocation signals.
Credential rotation and grant expiry are different events. Rotation changes downstream material. Expiry removes transaction authority. A broker must check both. Revoking a credential reference should stop new resolutions, while in-flight outcomes move through explicit failure or reconciliation handling.
These behaviors should be verified under clock skew, broker restart, concurrent requests, revoked references, and delayed execution. “Short-lived” is a target control, not evidence until those cases are exercised.
| Failure mode | Consequence | Target response |
|---|---|---|
| A secret is placed in prompt or memory | Model-visible state becomes a credential store | Give the agent an opaque reference and non-sensitive capability metadata |
| The executor accepts any authenticated workload | One runtime can use another runtime’s grant | Bind and verify workload, tenant, audience, and transaction |
| Broker errors echo provider details | Secrets can leak through the return path | Use allowlisted errors and separate protected diagnostics |
| A broad credential is cached after execution | Effective authority outlives the transaction | Constrain or prohibit caching and enforce expiry and revocation |
| The broker asks the model to resolve policy ambiguity | Probabilistic output enters the credential boundary | Deny or request deterministic clarification |
| Audit logs contain request headers or secret payloads | Evidence collection creates a second exposure path | Log references, decisions, and integrity data instead of reusable authority |
The previous article, One Authorization, One Commit Boundary, explains where the scoped grant originates. Next, “Uncertain” Is a State, Not an Error covers what happens when execution returns no definitive result. See the project overview and full case study for the complete reference design. To discuss implementation access, request repository access.
Written by
Vishvdeep Dashadiya
Lead AI Engineer. Agentic AI, real-time ML systems, and cloud-native infrastructure.
Keep reading
September 17, 2026 · 8 min read
How to consume approval, reserve constraints, issue scoped authority, and hand off evidence without pretending an external side effect is atomic.
September 17, 2026 · 8 min read
Why ambiguous transaction outcomes must pause blind retries and move through evidence-led reconciliation.
September 20, 2026 · 6 min read
Jev is a model that never generates text — it answers typed questions with calibrated probabilities. Where that fits in a LangGraph agent, with code, and where I would not use it.
Tell me about it. I reply within one working day with a first take and no sales pitch.