Unreal Labs Debuts Unreal Agent to Cut AI Coding Costs 39%
Unreal Labs has open-sourced Unreal Agent, a Go-based framework that reduces AI coding costs by 39 percent on benchmarks by decoupling tool execution from language model turns.

Unreal Labs has released Unreal Agent, an open-source, asynchronous-first agent harness designed to optimize how large language models interact with external tools. Distributed under the MIT license and written in Go, the framework orchestrates prompts, tool calls, and execution states. According to benchmark tests on Terminal-Bench 4.0, the harness achieves a 39 percent cost reduction compared to a setup using Codex and Astra, while maintaining a matching task pass rate.
The primary driver of these savings is the decoupled architecture of the harness. Traditionally, language models waste expensive tokens polling or waiting for tools to complete their tasks. Unreal Agent runs tools independently of model turns, allowing the coordinator to track active operations asynchronously. This design enables the model to submit multiple independent calls during a single turn, and users can even issue new instructions while tools are still running.
To keep token consumption low, the framework uses a highly streamlined design. It relies on a single bash tool, minimal prompts, and token-efficient outputs while avoiding the complexity of sub-agents. It also encourages batched calls to maximize efficiency. For state management, the system records sessions in an append-only, forkable, and versioned format. A swappable operation manager handles crash recovery, ensuring that long-running tasks can resume seamlessly after an interruption.
For AI practitioners, this development addresses one of the biggest hurdles in deploying autonomous agents: the high cost of continuous model interaction. By minimizing prompt overhead and eliminating idle polling, developers can run complex terminal-based tasks at a fraction of the usual price. The complete source code, configuration guides, and implementation examples are currently available on GitHub for immediate integration.
This is our own summary of reporting by AlphaSignal



