TL;DR: Long-horizon production agents break basic LLM judging because trajectories exceed context windows, state changes must be verified in source systems, and rubrics drift as tools and workflows change, according to Judgment Labs. The evaluation problem is shifting from final-answer grading to trajectory inspection, environment verification, and adaptive governance for agent behaviour.
At a glance
What this is: This is an analysis of why long-horizon production agents need agentic judges that can search, verify state, and adapt rubrics across changing environments.
Why it matters: It matters because IAM, PAM, and adjacent governance teams increasingly need to evaluate software actors that act across systems, not just authenticate once and stop.
👉 Read Judgment Labs' analysis of long-horizon agent evals and agentic judges
Context
Long-horizon agents create a governance gap because the evidence of what they did is spread across many tool calls, systems, and state changes. A judge that only reads a short transcript cannot reliably determine whether an action actually happened, which means evaluation can miss failures that matter for access, data handling, and workflow control. In identity terms, the same problem appears when a software actor can move through multiple systems faster than a reviewer or control can reconstruct.
The article is about evaluation architecture, but the underlying security issue is broader: autonomous software that can search, act, and adapt needs monitoring mechanisms that can inspect the whole trail of actions, not just the final output. That intersects with agentic AI governance, machine identity oversight, and operational control design, especially where agents touch AWS, GitHub, CRM systems, or calendar data. For most organisations, this is already a real governance pattern rather than a future-state problem.
Key questions
Q: How should organisations evaluate AI agents that act across multiple systems?
A: They should evaluate the full trajectory, not just the final response. That means capturing tool calls, retrievals, retries, and state changes, then checking those claims against source-of-truth systems. If the agent updated a record, opened a PR, or triggered a workflow, the environment must confirm it happened before the run is treated as successful.
Q: Why do long-horizon agents expose weaknesses in current governance models?
A: Because they compress many decisions into one run, while traditional governance assumes a small number of reviewable events. When the evidence is spread across systems and the control only sees the end result, hidden errors and unsafe actions can survive review. The mismatch is between agent scope and oversight scope, not just model quality.
Q: What do security teams get wrong about governing AI agents?
A: They often treat agents like another automation layer instead of governed non-human actors with their own access paths. Once an agent can connect to tools and data at runtime, the programme needs attribution, scoped privileges, and lifecycle oversight. Otherwise, the agent becomes an unreviewed extension of the enterprise access model.
Q: How can teams keep agent evaluation rubrics from going stale?
A: By versioning them and updating them from production feedback. Human labels, judge disagreements, recurring false positives, and new tool patterns should feed the next rubric revision. A static rubric quickly drifts away from real behaviour, especially when agents, workflows, and integrations change over time.
Technical breakdown
Why fixed LLM judges fail on long trajectories
A fixed LLM judge works only when the relevant evidence fits inside a manageable prompt window. Long-horizon agents can generate hundreds of tool calls, retries, retrieved documents, and intermediate decisions, so the judge sees only fragments. That creates two failure modes: missing the causal chain and over-weighting the final message. In practice, the judge may approve a run that looked plausible while ignoring an earlier retrieval error, stale data dependency, or hidden tool misuse. Practical implication: evaluation systems need retrieval and search over traces, not just prompt-based grading.
Practical implication: Use trajectory search and evidence selection instead of grading only the final answer.
State verification requires source-of-truth inspection
Production agents do not just produce text. They update records, trigger workflows, edit files, and call APIs, which means the real question is whether the environment changed as claimed. Verifying that requires read access to source-of-truth systems such as GitHub, CRM platforms, cloud logs, ticketing systems, or database records. A trajectory alone cannot confirm a successful update, because the agent may claim completion while the underlying state never changed. Practical implication: evals must compare claimed actions with durable evidence from the systems the agent touched.
Practical implication: Check environment state, audit logs, and API responses before accepting an agent outcome.
Adaptive rubrics are necessary when agent behaviour shifts
A rubric is a control document, not a permanent truth. As models, tools, and workflows change, yesterday's failure patterns become stale and new failure modes appear. If the rubric is not updated from production signals, it can over-penalise improved behaviour or miss emerging risks. The article's Rubric Builder loop is therefore a governance pattern: human feedback, judge disagreement, and production outcomes are folded back into the next rubric version. Practical implication: treat agent evaluation criteria as versioned control assets that need lifecycle management.
Practical implication: Version and revise eval rubrics continuously instead of freezing them after initial deployment.
NHI Mgmt Group analysis
Fixed judges create an evaluation trust gap: when an agent's work spans many turns and multiple systems, a single-pass LLM judge cannot reliably see the full control surface. That is not just a scaling issue, it is a governance failure because the review mechanism is narrower than the actor being reviewed. For IAM and PAM teams, the lesson is that oversight must match the operational reach of the software actor, or blind spots will persist.
Agent evaluation is now a form of identity verification for software actors: if an agent can update records, send messages, or edit infrastructure, the organisation needs evidence that the right action happened in the right system under the right conditions. That makes verification, traceability, and source-of-truth checks part of the identity control stack, not a separate AI problem. The practitioner conclusion is straightforward: software actors need evidentiary controls, not just policy text.
Adaptive rubrics should be treated as living governance artifacts: the article's strongest contribution is the idea that evaluation criteria must evolve with production behaviour. This mirrors lifecycle management in IAM, where stale entitlements and static reviews quickly lose value. The named concept here is rubric drift: the point at which a static evaluation policy stops matching how agents actually behave. Teams should manage it as a versioned control problem, not as a one-time model tuning exercise.
Long-horizon agents make traditional review boundaries too small: the control gap is not only in the judge, but in the organisation's assumption that a final output is the right unit of review. Long-running agents compress multiple decisions, tools, and state changes into one workflow, which breaks single-event governance. Practitioners should redesign approvals, logging, and exception handling around trajectory-level evidence rather than end-state summaries.
AI agent governance now intersects directly with NHI oversight: once an agent can touch cloud credentials, files, or business systems, it is effectively operating as a software identity with privileges and responsibilities. That creates a clear boundary with NHI governance, secrets management, and access review. The field should stop treating agent evals as a narrow ML quality issue and start treating them as part of the broader identity control plane.
What this signals
Rubric drift is now a governance issue, not a testing nuisance: as agents change, static evaluation criteria lose alignment with production behaviour. Teams that depend on one-off benchmark scores will overestimate control quality, especially where the software actor can reach into cloud services or business systems. The practical shift is toward versioned, evidence-based evaluation supported by the NIST AI Risk Management Framework.
The operating model should move from answer review to action assurance. If an agent can alter records, send messages, or trigger downstream workflows, then the evidence trail becomes part of the control plane. That makes trace capture, state verification, and exception handling essential for AI governance and adjacent identity oversight.
Trajectory-level assurance: this is the control pattern that matters when one run contains many decisions. It aligns naturally with OWASP Top 10 for Agentic Applications 2026, because the threat is not only bad output but bad action hidden inside a long sequence.
For practitioners
- Instrument trajectory-level evidence capture Store tool calls, retrieved records, retries, and state changes in a form that can be queried after the run. This allows reviewers to reconstruct the full decision path instead of relying on the final message.
- Add source-of-truth verification steps Require evals to check the systems the agent modified, such as GitHub, CRM, cloud logs, or databases. Compare the claimed action with durable evidence before scoring the run as successful.
- Version evaluation rubrics as control assets Treat the rubric like a living policy document. Update it when production behaviour changes, new tools are introduced, or recurring false positives and false negatives appear in human review.
- Separate final-answer quality from action validation Score whether the output is well written, but also validate whether the underlying actions were correct, complete, and reflected in the environment state. These are different controls and should not share a single pass/fail threshold.
Key takeaways
- Long-horizon agents outgrow single-prompt judging because the relevant evidence is distributed across many actions, systems, and state changes.
- Verification must extend into source-of-truth systems, or evaluation becomes a review of claims rather than a check of reality.
- Static rubrics age quickly in production, so agent governance needs versioned criteria that adapt to new behaviour and new failure modes.
Standards & Framework Alignment
This section maps relevant standards and security frameworks to the operational risks and controls described in this guidance.
OWASP Agentic AI Top 10 address the attack surface, NIST AI RMF, NIST CSF 2.0 and NIST SP 800-53 Rev 5 set the technical controls, and ISO/IEC 27001:2022 define the regulatory obligations.
| Framework | Control / Reference | Relevance |
|---|---|---|
| OWASP Agentic AI Top 10 | The article is about agent evaluation and long-horizon agent control failures. | |
| NIST AI RMF | GOVERN | The topic is governance of AI evaluation, accountability, and lifecycle control. |
| NIST CSF 2.0 | GV.RR-01 | Adaptive evaluation is a risk management and governance activity. |
| NIST SP 800-53 Rev 5 | CA-7 | Ongoing assessment fits the need to monitor agent behaviour over time. |
| ISO/IEC 27001:2022 | A.5.15 | Access control policy matters when agents act as software identities. |
Embed agent evaluation into governance routines so control quality is reviewed as the system changes.
Key terms
- Long-horizon agent: An AI agent that completes a task across many steps, tool calls, and external systems before producing its final outcome. The evaluation challenge is not just output quality but whether the entire chain of actions was appropriate, complete, and consistent with the environment state.
- Trajectory Evaluation: Trajectory evaluation checks the sequence of decisions an agent makes from start to finish rather than only the final answer. It is used to confirm task decomposition, tool choice, state retention, and termination logic across multi-step workflows.
- Government source-of-truth validation: A control that checks whether an identity exists in an authoritative government record and is in good standing. It is stronger than document verification because it validates the underlying identity, not just the authenticity of the presented artefact.
- Rubric drift: The gradual mismatch between an evaluation rubric and real production behaviour as models, tools, and workflows evolve. When this happens, the rubric can miss new failure modes or keep penalising behaviour that is no longer relevant.
What's in the full article
Judgment Labs' full article covers the operational detail this post intentionally leaves for the source:
- The search-and-verification harness design for inspecting long trajectories without manual trace review
- The rubric refinement loop that uses production feedback, judge disagreement, and human labels
- The benchmark methodology behind accuracy, recall, precision, and F1 comparisons across evaluator types
- The production improvement loop that turns eval findings into better prompts, code paths, and workflows
Deepen your knowledge
NHI Foundation Level course, the industry's only accredited NHI security programme, covers NHI governance, machine identity security, secrets management, and agentic AI identity. It helps practitioners connect software-actor oversight to the broader identity controls their programmes depend on.
Published by the NHIMG editorial team on August 18, 2026.
NHI Mgmt Group — the independent authority on Non-Human Identity, IAM, and Agentic AI security. nhimg.org