Skip to content

Production LLM Agents: Benchmarks, Security, And The Hard Problems No One Is Talking About

#llm-agents #agent-benchmarks #agent-security #multi-agent-systems #incident-response

Every engineering team right now is trying to ship LLM agents. Almost no one is measuring them correctly. Almost no one is defending against them correctly. This week six papers dropped on arXiv that answer most of the hard questions everyone has been avoiding.

None of this work is about making agents smarter. All of it is about finding out what agents actually do when you stop running them on toy test cases.

The state of agent evaluation before this week

Until this month every public agent benchmark measured performance on 5-15 step tasks that a human could complete in under 30 minutes. None included economic context. None measured failure modes that only appear after 60+ sequential actions. None tested agents against adversaries.

Teams used these benchmarks to justify production deployments. They were all useless for predicting real world performance. We knew this. No one had produced anything better.

That changed this week.

OmegaUse-OfficeVal: The first benchmark that actually matters

OmegaUse-OfficeVal is constructed from 100 real office workflow tasks submitted by working administrators, anonymized and normalized for testing. On average these tasks require 2 hours 19 minutes of human labor to complete correctly. Every task has a documented market labor cost and a fully automated code verifier that grades output quality, not just completion.

BenchmarkTask countAverage human timeEconomic groundingAutomated verificationOpen source
OmegaUse-OfficeVal1002h 19mYesFull code verifiersYes
WebArena812~12mNoPartialYes
AgentBench876~8mNoBinary pass/failYes
GAIA166~25mNoHuman gradedPartial

The result is the single most important number published about agents this year. All tested frontier agents were 15-70x cheaper than human labor. All scored under 32% success rate.

You will save an enormous amount of money deploying agents. You will also get garbage output two thirds of the time. There is no middle ground here. This is not a temporary gap that will be fixed with the next model release. This is the baseline we are working from.

SecRespond: Agents cannot clean up after breaches

SecRespond is the first benchmark for post-compromise incident response agents. Evaluators were given real forensic disk snapshots from 10 compromised production cloud hosts, standard alert logs, and the exact same tooling available to human security analysts. 23 frontier LLMs were tested on an industry standard agent harness.

Zero agents achieved full detection and remediation on any single host. All agents reliably followed up on explicit alerts. None proactively discovered unflagged backdoors. None produced remediation plans that could be run without manual correction.

If you are planning to deploy agents for security operations, this is your failure mode. Agents will do exactly what you tell them. They will never go looking for the thing you did not know to ask about.

AgentSnare: You can fool every penetration agent today

Autonomous penetration testing agents operate on a very simple loop: observe environment, select action, execute tool, repeat. Every agent currently deployed implicitly trusts every observation returned from the environment. No agent verifies that the response came from a real system. No agent checks for consistency across multiple observations.

AgentSnare exploits this property completely. It is a defensive system that watches the attacker agent's actions, dynamically constructs internally consistent decoy artifacts, and injects them into the agent's observation stream. It does not plant static decoys before an attack. It builds the fake environment one step at a time, exactly matching what the agent expects to find.

Across 15 real CVE targets and three state of the art attacker models:

  • 46.8% of all agent tool calls were executed entirely against the decoy
  • 55.9% of post-entry actions never left the decoy environment
  • 90% of agents submitted a successful completion report describing their exploit of the decoy target
  • Across all 45 test runs, zero real targets were successfully exploited at pass@3

This is not a clever trick. This is a fundamental design flaw present in every agent architecture currently deployed. No existing agent has any defense against this. No one was even testing for this until last week.

AgentMap: Multi agent systems work for structured reasoning

AgentMap is the only paper this week where agents clearly and consistently outperformed existing non-LLM systems. It solves ontology matching, a problem that has seen incremental improvement for 22 years with no major breakthroughs.

Instead of running a single large agent against the matching task, AgentMap uses seven specialized small agents with strictly bounded responsibilities. Agents pass only structured semantic state between each other. No natural language communication is permitted. No agent has full visibility of the entire task.

On hybrid equivalence and subsumption matching, AgentMap outperformed every existing baseline by 18-27 F1 points. It also outperformed purpose built systems on both pure equivalence and pure subsumption benchmarks.

This result is not an accident. Every good result across this entire batch of papers came from systems with small specialized agents, bounded scope, and structured interfaces. Every bad result came from monolithic generalist agents.

Latent agent communication does not do what you think it does

For 18 months the multi agent field has reported consistent 10-20% performance gains from systems that use latent vector communication instead of natural language. Everyone assumed this gain came from richer, more efficient information transfer between agents.

This week researchers ran the first causal audit of these channels. They ran controlled intervention tests where they replaced latent messages with null values, random vectors, messages from unrelated tasks, and messages generated by the receiving agent itself.

For 4B parameter models, approximately two thirds of the observed gain came from actual task relevant information in the message. For 8B parameter models, 83% of the gain came purely from the receiver observing that any message had been received. The actual content of the message contributed almost nothing to the result.

Agents are not collaborating. They are signalling to each other that they should try harder. That is the entire secret of the multi agent performance gains that everyone has been hyping.

The consistent pattern across every result

Every single paper this week arrived at the same set of conclusions, entirely independently:

  1. Monolithic generalist agents fail hard at all long horizon tasks
  2. All agents completely and unconditionally trust their input environment
  3. Performance on standard toy benchmarks has zero predictive value for real task performance
  4. Agent cost is already good enough for almost all use cases. Quality is not.
  5. Almost all observed multi agent gains are placebo effects, not actual communication.

None of these are temporary problems that will be fixed with larger models. These are inherent properties of the agent architectures we are building today.

What this means for teams shipping agents today

Stop benchmarking on GAIA. Stop building 1000 line generalist agent loops. Stop giving agents write access to anything.

If you deploy an agent today you should assume:

  • It will fail silently on one out of every three tasks
  • Any external actor can divert it into a fake workflow with 90% success rate
  • It will never tell you when it does not know something
  • It will produce extremely convincing output for work it never actually performed

Independent verification is not an optional extra. It is the only thing that makes agents usable.

The untested attack surface no one is measuring

Right now every enterprise is building internal agents that have access to Slack, email, Google Drive and Jira. All of these agents accept unauthenticated input from other users.

Any user on your slack can send a message that will divert that agent into a decoy workflow. They can make the agent report that work was completed. They can make the agent leak documents. They can do this invisibly. No one has demonstrated a defense against this. No one is even testing for it.

This is the largest outstanding security problem in technology right now. Every team is racing to deploy agents. No team is auditing their behaviour.

Closing

We are not in the part of the curve where agents are reliably good. We are in the part of the curve where agents are reliably cheap. That is a much more important distinction.

All of the hard problems for the next two years are not about making agents smarter. They are about measuring what they actually do. They are about verifying what they tell you. They are about defending against them when they work exactly as designed.

None of this is glamorous. None of it will make good demo videos. This is the actual work required to run agents in production.