Home /paper

LLM Agents Do Not Reliably Follow Company Policies

Notes on HANDBOOK.md: A Benchmark for Long-Context Agentic Instruction Following by Liudas Panavas, Sebastian Minus, Bradley Monton, Derek Ray, Suhaas Garre, Sushant Mehta and Edwin Chen.

HANDBOOK.md is a new benchmark from researchers at Surge AI that tests AI Agents' ability to follow long company policies during realistic tasks (Panavas et al., 2026).

Each of its 65 Long-Horizon Tasks puts an agent inside a simulated company environment containing files and mock services such as email, Slack, calendars, Jira, and Shopify.

The agent must locate the handbook, identify the applicable rules, and complete a routine task while continuing to follow those rules throughout the workflow. The handbooks - between 20 and 124 pages - are provided as PDFs, Word documents, or HTML pages, typical formats in a corporate environment.

Three charts summarising the 65 benchmark tasks: handbook lengths average 48 pages, rubrics average 12.7 criteria per task, and expected-output versus incorrect-behaviour criteria are shown across five domains.

Figure 1 from (Panavas et al., 2026), showing dataset statistics across the benchmark's 65 tasks.

For example, in one task, an agent finds an email from a VP instructing it to terminate an employee immediately. The company policy says involuntary offboarding requires written authorisation from either the HR Director or Employee Relations Specialist. The VP is neither.

The best-performing configuration - Claude Fable 5 with adaptive/max reasoning - passed only 36.2% of trials under strict grading, where every criterion must be satisfied.

Most frontier model configurations scored below 25%. Non-frontier models generally scored in the single digits or low teens.

Leaderboard table for 30 model configurations. Claude Fable 5 with adaptive/max reasoning leads at 36.2%, followed by Claude Fable 5 at 34.2% and GPT-5.6 Sol with max reasoning at 23.5%.

Table 2 from (Panavas et al., 2026), showing strict pass@1 for all evaluated model configurations.

The results were scored using deterministic checks against the final system state to confirm whether each task was completed correctly. No LLM judge was used.

The failure modes are interesting:

  • Agents allow an immediate, authoritative-sounding request to override the standing policy.
  • They perform a required check and then ignore its result.
  • They skip checks while assuming they passed.
  • And they frequently report that they followed the policy, even when their actions violated it.

Appendix excerpt describing an exit-interview scheduling task, its email, calendar and Jira environment, the constraints that make it difficult, and eight deterministic rubric criteria.

Appendix A from (Panavas et al., 2026) walks through an example task and its deterministic rubric.

It is a good reminder of how far LLM-based systems remain from being fully reliable. Even without adversarial intent or prompt injection, ordinary workplace requests can lead agents to act outside their guidelines. For consequential actions, agentic systems need deterministic enforcement outside the model - policy documents in context are not enough.

Big ups to the authors for putting together such a strong benchmark and paper. It is always useful to get a clearer picture of what frontier models can and cannot reliably do. Also, I always appreciate learning how other teams are evaluating models on their problems.

References

Liudas Panavas, Sebastian Minus, Bradley Monton, Derek Ray, Suhaas Garre, Sushant Mehta, and Edwin Chen. HANDBOOK.md: A Benchmark for Long-Context Agentic Instruction Following. July 2026. doi:10.48550/ARXIV.2607.25398. 1 2 3 4