All insights
Industry newsAug 24, 2026Source: NVIDIA

NVIDIA says enforceable AI agent security belongs below the harness

AI security team reviewing a layered agent stack with the enforceable policy boundary below the harness

NVIDIA published a technical architecture on 21 August 2026 that places enforceable AI agent security in the runtime and infrastructure below the agent harness. The central claim is practical: prompts and harness rules can influence what an agent tries, but only an external control layer can determine what it is allowed to do.

This is NVIDIA's position, not a new standard or independently validated security guarantee. AI Understanding separately described the proposal and noted that the approach has not been independently validated. For AI platform and security teams, the useful development is a clearer way to separate behavioral guidance from enforceable authority.

What NVIDIA's agent security architecture proposes

NVIDIA describes an agent stack that includes the model, agent harness, orchestration layer, secure runtime, and inference infrastructure. The model and harness sit above a security boundary. Identity, policy, credentials, isolation, and audit controls sit below it.

The article argues that every request with an external effect should cross this boundary. That includes file operations, processes, network requests, API calls, data changes, communications, and resource allocation. Components above the boundary should not be able to grant themselves authority or bypass the decision.

NVIDIA also proposes four workload profiles:

ProfileTypical useControl emphasis
IsolatedPre-production work with disposable dataNo production credentials, restricted network, session recording
ConnectedPre-production access to approved servicesShort-lived identity, masked data, limits, full logging
ProductionChanges to systems or business dataTask-scoped access, independent checks, human review for high-impact actions
AdversarialRed-team or reduced-safeguard evaluationsDefault-deny communications, quarantine, strongest isolation

These profiles are recommendations from NVIDIA. They do not prove that NVIDIA OpenShell, or any other implementation, fully contains every agent or prevents every failure.

Why controls inside the harness are not enough

An agent harness owns the working loop, tools, context, and memory. It can refuse a request, ask for confirmation, or steer the model toward a safer plan. Those are valuable controls, but the harness is also software that can be changed, misconfigured, or influenced by untrusted input.

NVIDIA identifies recurring design problems such as long-lived credentials, untrusted documents acting like instructions, external effects that escape review, and incomplete audit evidence. A prompt injection can exploit these weaknesses when the same agent that interprets content can also decide whether the resulting action is authorized.

The operational response is to keep authorization outside that path. A runtime can bind a request to an identity, evaluate a policy, issue narrow access, and record the result. Risk signals may reduce authority, but should not increase it. Maetra's guide to prompt injection controls for AI agents explains why content screening and deterministic action controls solve different parts of the problem.

Six checks for teams operating tool-using agents

Security and platform owners can use the new architecture as a review checklist:

  1. Map every effect path. List tools, APIs, files, networks, identities, data stores, and physical or financial actions the agent can reach.
  2. Find the authoritative policy point. Identify the component that makes the final allow, block, or review decision. Confirm that the agent cannot alter or bypass it.
  3. Reduce standing authority. Replace broad, long-lived credentials with task-scoped, short-lived access where the platform supports it.
  4. Separate guidance from enforcement. Keep model prompts and harness rules, but do not treat them as the final security boundary.
  5. Test failure and recovery. Exercise prompt injection, tool misuse, network egress, credential access, delegation, revocation, and uncertain external outcomes.
  6. Retain decision evidence. Record the identity, policy version, requested action, decision, reviewer when applicable, execution result, and reconciliation state. The AI audit log guide provides a practical evidence structure.

The review should cover indirect paths too. If an approved tool can create a new credential, launch compute, install software, or delegate to another agent, the effective authority is wider than the tool name suggests.

What remains uncertain

NVIDIA's article is an architectural position based on its work with OpenShell, developers, open-source projects, and partners. It does not publish a comparative evaluation showing that the proposed stack outperforms other security designs. It also does not remove the need to validate product-specific behavior, cloud permissions, network controls, or incident response.

Infrastructure enforcement can still fail because a policy is wrong, an effect path is missing, an identity is overprivileged, or an external system returns an ambiguous result. Human review is appropriate for some high-impact actions, but it should be driven by policy and consequence rather than applied to every action.

Maetra analysis: define authority before adding autonomy

The most useful lesson is not that every team needs the same runtime. It is that the authority boundary must be explicit before an agent receives more tools or a longer operating horizon.

Start with one consequential workflow. Identify the task, proposed action, affected system, credential, policy decision, intended effect, and evidence record. Then test whether any route reaches the effect without crossing the control point. Teams can use Maetra Secure to inspect suspicious prompts and tool calls while keeping the final authorization decision in an enforceable policy layer.

Sources

AI agent security boundaryagent runtime policyNVIDIA OpenShellleast privilege for AI agents