
TL;DR
A new benchmark drops five frontier coding agents into a live OpenTelemetry microservice system with real Prometheus, Jaeger, and OpenSearch telemetry. Best RCA accuracy: 25.3% on Medium, 10.0% on Hard. Even Claude Fable 5 is far from oncall-ready.
Coding agents can fix bugs on frozen repositories. A new benchmark from Cornell Tech and Traversal asks a harder question: can they run oncall?
ORCA-bench (arXiv 2607.28545, submitted July 30) drops five frontier agents into a live, OpenTelemetry-instrumented microservice system with six days of real telemetry, and hands them the kind of report a user actually files: "checkout is broken", or worse, "users are having issues on the site". The results are a reality check for anyone assuming agentic coding extends to production reliability.
ORCA-bench is built on the OpenTelemetry Astronomy Shop demo: 19 microservices in 13 languages, running under continuous simulated load for six days. Agents investigate through the same interfaces a human SRE would use - Prometheus for metrics, OpenSearch for logs, Jaeger for traces, all queried through the Grafana API - plus full source code access in a terminal. The environment generates 1,079 root cause analysis (RCA) tasks: 884 incident tasks and 195 control tasks where the correct answer is "nothing is wrong".
The design choices matter as much as the environment:
Across Claude Opus 4.7, Claude Sonnet 4.6, GPT-5.5, GLM-5, and DeepSeek-V4-Pro running in the Terminus-2 harness, with Claude Fable 5 added on the Verified subset:
The Day 6 case study is the most concrete failure. Six events co-occurring: three models each identified exactly one root cause - all different ones - and missed the other five. GPT-5.5 found four of six. DeepSeek-V4-Pro found none.
From the archive
Jul 31, 2026 • 6 min read
Jul 31, 2026 • 7 min read
Jul 31, 2026 • 7 min read
Jul 31, 2026 • 8 min read
The SWE-bench shape does not transfer to RCA. Bug-fix benchmarks give agents a failing test and a frozen repo; success is a green test suite. ORCA-bench gives them an ambiguous report, a live distributed system, and a success criterion of a defensible diagnosis against human-curated ground truth. The 10-25% scores show this is not a harder version of the same task, it is a different skill. We made the same point about benchmark scope in Agent Evals Need Baseline Receipts and the SWE-NFI benchmark: what you measure is what your agents optimize, and nobody was measuring diagnosis.
The gap is a lower bound. The authors argue this directly: the agents investigate a 50 GB testbed whose code and instrumentation are public - almost certainly in pretraining - with each task isolated and no memory between incidents. Real production is larger by orders of magnitude, private, and drifting. Read the numbers as "this good at best", which makes the oncall delegation case weaker, not stronger.
Concurrency is the failure mode to watch. The Day 6 result - three agents each naming a single, different root cause, GPT-5.5 finding four of six, DeepSeek-V4-Pro finding none - matches the pattern we flagged in Agent Containment and the Capability Ledger: agents lock onto the loudest signal and stop. For teams running parallel agents, this is direct evidence about when multi-agent fan-out helps (independent tasks) and when it does not (one system, many interacting faults).
The eval infrastructure is worth borrowing even if the scores are not. A benchmark with human-verified ground truth, a judge calibrated against humans at kappa 0.90, and control tasks to catch "always says there is an incident" behavior is the shape every agent harness should copy. Agentic AI reliability case studies keep showing the same thing: teams ship agent behavior without baseline receipts, and only discover the hallucination rate after an incident.
Three conclusions.
First, oncall is the right next frontier for agent evals, and this is the first one built correctly. SRE benchmarks before it stripped out at least one of telemetry, source code, or realistic report ambiguity. ORCA-bench is the first to include all three, and the result is that everything collapses - that is a signal about the task, not the benchmark.
Second, the hallucination rate should be the headline for operators. A coding agent that hallucinates a root cause is worse than one that says "I do not know" - it sends a human chasing a plausible-sounding wrong lead during an outage. Until hallucination rates are near zero, the safe play is agents as investigation assistants that produce evidence trails, not agents that write the incident report. This is the same division of labor the 12-factor agents in production argument makes for all agent output: require receipts.
Third, expect the frontier to move fast here. Claude Fable 5 already roughly doubles Opus 4.7's Verified accuracy, and the paper's own limitation section notes structured workflows and hybrid causal-inference RCA are unexplored territory. The benchmark is public on the Harbor hub, so this is now a trackable metric like any other - and the first vendor to publish a real SRE-style score will have something to say.
The honest summary: agents write code better than they diagnose systems, and the gap is now quantified. If your team was wondering when AI can take pager duty, the answer from this benchmark is not this quarter - but the eval to track the progress now exists.
Read next
Hex's data-agent lab shows the practical eval pattern AI teams should copy: compare candidates against stable baselines, keep receipts, and judge changes by task behavior.
8 min readA new 188-task benchmark for non-functional improvements finds coding agents hit 70% on functional correctness but lag humans on refactors and structural changes - the quality gap that becomes tech debt.
6 min readSWE-Bench has an 81% false-positive problem. FrontierCode replaces it with mergeability as the metric - and the scores are sobering for every AI coding tool on the market.
8 min readTechnical content at the intersection of AI and development. Building with AI agents, Claude Code, and modern dev tools - then showing you exactly how it works.
Gives AI agents access to 250+ external tools (GitHub, Slack, Gmail, databases) with managed OAuth. Handles the auth and...
View ToolLightweight Python framework for multi-agent systems. Agent handoffs, tool use, guardrails, tracing. Successor to the ex...
View ToolGoogle's frontier model family. Gemini 2.5 Pro has 1M token context and top-tier coding benchmarks. Gemini 3 Pro pushes...
View ToolMulti-agent orchestration framework built on the OpenAI Agents SDK. Define agent roles, typed tools, and directional com...
View ToolScore every coding agent on your own tasks. Catch regressions in CI.
View AppCompare AI coding agents on reproducible tasks with scored, shareable runs.
View AppSpec out AI agents, run them overnight, wake up to a verified GitHub repo.
View AppResearcher, auditor, reviewer, and other ready-made subagent types.
Claude CodeConfigure Claude Code for maximum productivity -- CLAUDE.md, sub-agents, MCP servers, and autonomous workflows.
AI AgentsWhat MCP servers are, how they work, and how to build your own in 5 minutes.
AI Agents
Buzz by Block: Open-Source Slack-Style Collaboration for Humans + AI Agents (Demo & Setup) Check out Arcade: https://arcade.dev.plug.dev/xiDRwlA Repo: https://github.com/block/buzz The video introd...

Build Anything with Vercel, the Agentic Infrastructure Stack Check out Vercel: https://vercel.plug.dev/cwBLgfW The video shows a behind-the-scenes walkthrough of how the creator rapidly builds and d...

Check out Trae here! https://tinyurl.com/2f8rw4vm In this video, we dive into @Trae_ai a newly launched AI IDE packed with innovative features. I provide a comprehensive demonstration...

Hex's data-agent lab shows the practical eval pattern AI teams should copy: compare candidates against stable baselines,...

A new 188-task benchmark for non-functional improvements finds coding agents hit 70% on functional correctness but lag h...

SWE-Bench has an 81% false-positive problem. FrontierCode replaces it with mergeability as the metric - and the scores a...

The Bayer and Thoughtworks PRINCE case study is a useful reminder that reliable agentic AI comes from context routing, t...

HumanLayer's 12-Factor Agents guide turns agent reliability into an engineering checklist: own prompts, context, tools,...

Microsoft's Change2Task turns merged pull requests into verified, executable coding agent tasks: 79.6% construction succ...

New tutorials, open-source projects, and deep dives on coding agents - delivered weekly.