the success rate number on computer use agents is the wrong one to watch

Reddit r/AI_Agents News

Summary

An AI agent developer argues that recovery rate after mistakes is more important than first-try success rate for practical usability, noting that no current benchmarks report recovery cases.

I spent way too long optimizing the single-run task success rate on my desktop agent, basically the number you'd put in a demo. turns out that's the vanity metric. the thing that actually predicts whether i still reach for it next week is recovery rate: what happens on the step right after it clicks the wrong button. every multi-step agent takes a wrong action eventually. the usable ones notice the state didn't change the way they expected and back out. the demo-grade ones just barrel ahead. and since i drive native mac apps through the accessibility tree instead of screenshots, that failure is silent, the tree goes stale and the next action quietly lands on nothing. So now i track two numbers, first-try success and recover-from-a-wrong-action success, and the second is the only one that moved whether it actually finishes my work. no benchmark i've seen even reports the recovery case. they all score the clean first attempt, which is the one part of real usage that almost never happens. written with ai
Original Article

Similar Articles

A right answer from your agent doesn't mean it did the right thing

Reddit r/AI_Agents

The article discusses the pitfalls of evaluating AI agents solely based on their final answers, emphasizing the importance of inspecting intermediate steps, tool calls, and reasoning to catch confidently wrong outputs. It suggests using automated scoring and trace replays to measure and improve agent behavior.

On the Reliability of Computer Use Agents

Hugging Face Daily Papers

A preprint analyzing why computer-use agents succeed once but fail on repeated executions, attributing unreliability to execution stochasticity, task ambiguity, and behavioral variability, and advocating repeated evaluation and stable strategies.