August 2026 Summaries
3 posts from Runta
Filter
Month:
Year:
Post Summaries
Back to Blog
FrontierHarness Eval compares how nine production coding harnesses, across 12 configurations, influence agentic coding-task performance, cost, speed, and caching when using the same Kimi K3 model, Runta runtime, and 30 verifier-scored Terminal-Bench and DeepSWE tasks. Across 360 fresh, checkpoint-restored trials, Codex achieved the highest pass rate at 66.7%, Pi offered strong value at $2.43 per pass, Exo Harness had the lowest cost at $1.05 per pass despite a 53.3% pass rate, and DSH Minimal was fastest with a 5-minute-41-second median runtime; DSH Creator ranked competitively across all three measures. The evaluation found that pass rates varied less than costs, failures could be expensive, cache-hit rates did not necessarily indicate low spending, and model-vendor lineage did not confer a clear advantage, as Kimi Code placed near the middle. Claude Code matched DSH Creator’s 63.3% pass rate but showed substantially higher costs, potentially due to poor interaction among its caching approach, Kimi K3’s implicit cache behavior, and the gateway’s Messages API path rather than the harness alone. The benchmark acknowledges limits including its software-engineering focus, one-attempt design, harness-specific turn limits, and inability to isolate harness effects from model and gateway behavior, with future plans to test more tasks, harnesses, and complete harness-model compatibility matrices.
Aug 31, 2026
1,931 words in the original blog post.
Runta provides persistent, scalable cloud runtimes that agents can access through SSH, allowing them to use familiar shell-based workflows without requiring custom integrations or agent-specific APIs. Its security model lets agents use authorized services without exposing underlying credentials and applies egress policies to limit accessible external network destinations. Setup requires installing the Runta CLI on Linux or Apple Silicon macOS, logging in through browser authorization, creating a runtime named “my-agent” with specified CPU and memory resources, waiting for it to become ready, registering an SSH alias, and verifying access with an SSH connection. The instructions emphasize keeping the login process open during authorization, reporting any exact setup blocker, and never revealing private keys, credentials, or authentication tokens.
Aug 13, 2026
368 words in the original blog post.
As AI agents increasingly make decisions within live production systems rather than merely generating code before deployment, their probabilistic behavior challenges infrastructure assumptions built around deterministic execution. The author argues that agent systems should be treated as computation graphs containing models, tools, evaluators, branches, and side effects, requiring traditional goals of low latency, scale, cost control, and reliability to be reconsidered. Reliability may depend on costly safeguards such as redundant model outputs, parallel execution paths, voting, validation, and carefully defined commit boundaries. A central challenge is semantic recovery: after a long-running agent fails, systems must restore meaningful execution state, including validated constraints, decisions, intent, and side-effect boundaries, rather than simply restarting a process or restoring an indiscriminate snapshot. The proposed approach favors compact, explicit semantic scratch space and reentrant memory that distinguishes durable judgments from temporary traces, enabling agents to stop, inspect, fork, and resume coherently. Traditional virtual machines and containers isolate resources but do not capture execution meaning, leading the author to advocate for agent-native runtimes that unify state, side effects, and recovery; Runta is presented as an effort to make such long-running execution resumable, inspectable, and recoverable.
Aug 05, 2026
1,601 words in the original blog post.