
TL;DR
A new arXiv paper builds a deterministic monitor on top of SWE-agent that watches long agent trajectories and only calls an advisor LLM when the run actually drifts. Resolution rates go up by up to 15.2 points at an extra $0.08 per instance, and the paper argues the expensive approach is re-planning from inside the loop.
Long-horizon coding agents drift. A run that starts with a reasonable plan will burn turns repeating failed actions, wander away from the issue it was assigned, or terminate without a working patch. The obvious fix, asking an LLM to monitor the trajectory and re-plan, is also the expensive one: every checkpoint is another model call, and a confused re-plan can push an agent further off course than the drift it was meant to catch.
A new paper on arXiv argues there is a cheaper middle path. LivePlan (arXiv 2608.06701) decouples judging from advising: a deterministic, rule-based monitor watches the trajectory for signals of trouble, and only when one fires does it consult an LLM advisor for a high-level correction. The headline numbers: up to 15.2 percentage points higher issue resolution on SWE-bench (9.9 points on average across configurations), at an added cost of $0.08 per instance.
The setup is built on SWE-agent, the classic agent scaffold, and the monitor sits outside the agent loop entirely. The paper describes the design as two separate components with different failure costs:
That division is the paper's core argument: prior approaches that re-plan from inside the loop spend LLM tokens on every turn boundary, and the resulting plan churn can be misleading. LivePlan only spends tokens when there is evidence something is wrong, which keeps interventions rare enough to stay cheap and targeted enough to stay useful.
From the archive
Aug 9, 2026 • 10 min read
Aug 9, 2026 • 7 min read
Aug 9, 2026 • 7 min read
Aug 8, 2026 • 9 min read
The evaluation uses five LLMs across two roles - three as executor agents and two as advisors - on both SWE-bench Verified and SWE-bench Pro. Compared with vanilla SWE-agent:
That last point matters for the monitoring story specifically: the design does not fix what is not broken. Because the rule-based monitor only fires on detectable drift, successful trajectories run through untouched, which is exactly what you want from a supervisor that sits on top of an already-good agent.
LivePlan is the latest in a clear pattern this year: agent quality work is migrating from the model to the harness. Where teams used to wait for a stronger model to fix flaky multi-step runs, the new work is about supervision layers, runtime checks, and intercepting failures before they compound. The AgentChaos study showed robustness is a systems property, not a model property; the judge-leaves-the-loop work showed LLM verdicts inside the loop are often the wrong tool; LivePlan is the constructive version of both - a systems monitor that only calls a model when the system says it must.
Three practical takeaways for anyone running coding agents:
The paper is early - no code repo is linked yet, and the evaluation is on SWE-bench rather than production workloads - but the architecture generalizes beyond the scaffold it is built on. Any agent system with a visible trajectory can bolt on a rule-based monitor and gate LLM intervention behind it. Expect to see this pattern show up in agent frameworks over the next quarter.
Read next
A new ASE 2026 framework injects server errors, truncated responses, and corrupted tool calls into live agent systems at the HTTP layer. Every system degrades, pass@1 drops up to 50 points, and the ranking stays the same no matter which LLM is behind it.
6 min readEvidence gates, verifiable reward games, deploy-time certificates: the fixes that moved agent quality this week did not make judges better, they removed the judge. We think the LLM verdict inside the agent loop is a transitional technology, and here is the bet you can grade us on.
10 min readThe first production-scale trace of agentic coding says the context you keep paying for is already dead at every turn boundary. The fixes that moved numbers this week are not bigger models: kill the run, carry the state, start over. Here is the bet you can grade us on.
11 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.
Anthropic's agentic coding CLI. Runs in your terminal, edits files autonomously, spawns sub-agents, and maintains memory...
View ToolOpenAI's flagship. GPT-4o for general use, o3 for reasoning, Codex for coding. 300M+ weekly users. Tasks, agents, web br...
View ToolConfigure Claude Code for maximum productivity -- CLAUDE.md, sub-agents, MCP servers, and autonomous workflows.
AI AgentsInstall Ollama and LM Studio, pull your first model, and run AI locally for coding, chat, and automation - with zero cloud dependency.
Getting StartedAsk quick side questions without derailing the main task.
Claude Code
No-Code AI Automation with VectorShift: Integrations, Pipelines, and Chatbots In this video, I introduce VectorShift, a no-code AI automation platform that enables you to create AI solutions...

In this video, I'll introduce you to VectorShift, a powerful no-code AI automation platform, and show you how to use its functionalities for various use cases, including agents, chatbots, and...

A new ASE 2026 framework injects server errors, truncated responses, and corrupted tool calls into live agent systems at...

Evidence gates, verifiable reward games, deploy-time certificates: the fixes that moved agent quality this week did not...

The first production-scale trace of agentic coding says the context you keep paying for is already dead at every turn bo...

Five managed-agent providers, five pricing models, zero unified cost attribution. If you're running agents overnight, yo...

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

A Huawei-Queen's study finds open coding models fine-tuned under OpenHands degrade sharply under other scaffolds - SWE-L...

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