TL;DR: Many LLM agent policy breaches look structurally correct, with valid tool calls and clean outputs that still violate organisational rules because key facts such as recipient role, document classification, or prior session state are missing at decision time, according to Highflame. The finding changes the control model from content inspection to state-aware enforcement, because the failure is not reasoning alone but absent world-state context.
NHIMG editorial — based on content published by Highflame: Policy-Invisible Violations in LLM-Based Agents
By the numbers:
- Content-only DLP scores 68.8% accuracy, 40.1% recall, and 56.6% F1 on this class of violations.
- 95.3% to 40.7% on average., the system prompt cuts violations from 95.3% to 40.7% on average.
- The PhantomPolicy benchmark covers 600 traces across eight categories of invisible violations.
Questions worth separating out
Q: What breaks when LLM agent policy depends on state the model cannot see?
A: The enforcement decision becomes incomplete even when the tool call looks valid.
Q: Why do content-only DLP tools miss many LLM agent violations?
A: They inspect the payload, not the relationship between the payload and the world state.
Q: How should security teams evaluate LLM agent controls for policy violations?
A: They should test whether controls detect the resulting state change, not just whether each individual step looks reasonable.
Practitioner guidance
- Separate agent reasoning from enforcement state Keep the policy engine deterministic and feed it the facts it needs, including recipient role, document audience, and session history, rather than asking the model to infer them.
- Accumulate session context across tool calls Record prior reads, inferred data sources, and sensitive context so outbound actions can be evaluated against the full session rather than the last prompt only.
- Test controls against state-transition scenarios Build evaluation cases around cross-turn leakage, oversharing, and audience mismatch so the team measures whether the world-state boundary is protected.
What's in the full article
Highflame's full blog post covers the operational detail this post intentionally leaves for the source:
- The eight benchmark categories and how each maps to a different state-aware failure mode.
- The Sentinel and Cedar policy examples that show how world-state checks are encoded in practice.
- The 600-trace benchmark results across GPT and Claude models, including accuracy and recall by approach.
- The mutation-and-invariant pipeline that turns tool calls into enforceable organisational state changes.
👉 Read Highflame's analysis of policy-invisible violations in LLM agents →
Policy-invisible violations in LLM agents: where do controls fail?
Explore further
Policy-invisible violations expose a state blind spot, not a reasoning defect. The agent can follow instructions, choose a valid tool, and produce a clean output while still breaking policy because the enforcement facts are external to the model. That means the failure is architectural: the control point lacks the recipient, audience, and session state needed to judge the action. Practitioners should treat this as a world-state governance problem, not a prompt quality problem.
A few things that frame the scale:
- Content-only DLP scores 68.8% accuracy, 40.1% recall, and 56.6% F1 on this class of violations, according to LLMjacking: How Attackers Hijack AI Using Compromised NHIs.
- Our research shows that 80% of organisations report AI agents already performing actions beyond intended scope, which is why execution context must be governed as tightly as identity.
A question worth separating out:
Q: What is the difference between prompt instructions and world-state enforcement for agents?
A: Prompt instructions tell the model what to do, while world-state enforcement checks whether the proposed action is allowed in the organisation's actual state. Prompting can reduce obvious mistakes, but it cannot reliably enforce policy when the needed facts live in session memory, identity context, or data governance systems.
👉 Read our full editorial: Policy-invisible violations show why LLM agent controls miss state