Unreal Labs has released Unreal Agent, an open-source agent harness built around a single architectural bet: move tool-call lifecycle management — waits, polls, heartbeats — out of the LLM's context window and into an asynchronous runtime layer. Every tool invocation gets immediately logged as "in-progress" while execution continues in the background. When results land, they're appended and the model is re-called. The result is fewer model turns, fewer input tokens, and a user who can steer the agent at any time without waiting for tools to finish. The headline numbers are real but narrow. On Terminal-Bench 4.0, Unreal Agent matches Codex's 57.9% pass rate at $1,428 total cost versus Codex's $2,350 — a 39% cost reduction. On SWE-Atlas Codebase QnA, it edges out Codex on pass rate (65.8% vs 63.3%) while spending 28% less. On DeepSWE 1.1, similar story: 72.4% vs 69.0% pass rate, 16% cost savings. On ALE-CLI, pass rates are essentially tied (30% vs 29%) with 26% cost savings. Throughout, Unreal Agent consistently uses fewer model turns and fewer input tokens per trial. The mechanism is straightforward: by not making the model manage tool-call state, you eliminate polling tokens and waiting turns. The model issues tool calls, gets an immediate "in-progress" stub, and moves on to other useful work. More tool work gets scheduled per model turn. The system prompt and tool output formatting are deliberately token-minimized. No sub-agents, no orchestration workflows — just a thinner harness. What's missing is as instructive as what's present. All four benchmarks are coding-oriented, run on Harbor for reproducibility, using a single model (GPT-6 Astra xhigh). There's no data on how the async pattern performs with slower, more variable tools — the blog mentions kicking off a dev environment setup that takes minutes, but no benchmark captures that scenario. The comparison set is Codex and Pi; Claude Code and other production agents are absent. The cost-efficiency claim holds up within its demonstrated scope. But pass-rate differences across all four benchmarks fall within what Unreal Labs itself attributes to "benchmark variance." The product isn't winning on capability — it's winning on cost-per-equivalent-outcome. That's a legitimate and undersold value proposition in a market where agent compute costs are ballooning, but it's a different claim than being a better agent. Unreal Labs frames harness design as "a research area in its own right," which is the most interesting assertion in the piece. The current agent ecosystem treats the harness as plumbing — the model is the star, the harness is infrastructure. Unreal's implicit argument is that intelligent scheduling of tool calls at the harness level can substitute for model intelligence spent on tool management. If true, this is a generative insight: it means cheaper models can punch above their weight when paired with smarter harnesses. The Go SDK, runner executable, and Harbor-compatible benchmark runner are all open-source. The barrier to verification is low, which is the right move for a startup trying to establish credibility against OpenAI's Codex and Anthropic's ecosystem. Whether the async pattern generalizes beyond coding benchmarks to messier, longer-running, multi-domain agent workflows remains the open question.