When agents reason well,
but plan poorly.
First surfaced in Tandemly Briefing — 2026-07-11.
Researchers at Notre Dame, Stanford, Yale, and Edinburgh identified the exact mechanism behind a frustrating pattern: LLM agents that handle individual steps well but fall apart on longer tasks. The problem is not model capability. It is a structural collapse in how step-by-step reasoning handles time.
Reasoning step by step
is a greedy policy.
Chain-of-thought prompting asks a model to score each candidate action based on how good it looks right now. That works well on short tasks. It causes a specific, measurable failure on longer ones.
LLM agents are good at individual reasoning steps. Given a problem, they can generate a plausible next action. Given the result of that action, they can generate another. This chain of local decisions looks a lot like planning, but it is not planning in the technical sense. Planning requires that early decisions account for their eventual consequences, sometimes many steps away. Step-by-step reasoning does not do this.
The failure is structural, not just a capability gap. Standard chain-of-thought prompting asks the model to score each candidate action based on how good it looks from the current position. This is a greedy policy: always take the locally best-looking option. In short tasks, greedy works reasonably well because there is not much ahead to get wrong. In longer tasks, greedy causes early commitments that close off better paths downstream, and those early choices are hard to reverse once other decisions pile on top of them.
The paper traces this amplification precisely. Locally optimal choices induced by step-wise scoring lead to early myopic commitments that are systematically amplified over time and difficult to recover from. The research team measured this before and after applying FLARE: agents using standard step-by-step reasoning made a myopic choice at the first decision step 55.6% of the time. Those agents also had a 5.4% chance of recovering once they took that first wrong turn.
If step-wise reasoning collapses into a greedy policy on long-horizon tasks, what is the minimal intervention that breaks the collapse? Can you add planning behavior to a reasoning model without training it differently, by changing how it evaluates its options before committing?
Lookahead, propagation,
and one step at a time.
FLARE adds three mechanisms to standard step-by-step reasoning. Together, they make downstream consequences visible before the agent commits. The formal analysis uses deterministic, fully structured environments so that agent-side decision failures can be isolated from environment noise.
FLARE stands for Future-aware Lookahead with Reward Estimation. The name describes exactly what it does. Before committing to an action, the agent simulates a short set of candidate trajectories, scores each by where it ends up rather than where it starts, propagates those scores back to the current decision point, and then commits to only the first step of the best-scoring path. It then replans from the new position rather than following the original simulated sequence.
The lookahead is organized using a UCB-style (Upper Confidence Bound) selection rule, similar to the approach used in Monte Carlo Tree Search. This allocates simulation effort toward the most promising branches rather than expanding all candidates equally. The backward value propagation then flows information from simulated futures back through the search tree, revising the estimated quality of earlier branching choices. When a simulation reveals that a branch leads to poor outcomes, that signal propagates back to the decision point and lowers the score for the action that started that branch.
FLARE is a prompting and scaffolding strategy, not a training intervention. It does not require fine-tuning or access to model weights. This makes it applicable across model families without additional training cost. The lookahead is also deliberately bounded: FLARE does not attempt to search the full future horizon, which would be expensive and would compound simulation errors. A bounded lookahead is enough to break the myopic commitment that causes most long-horizon failures.
Recovery up 5x.
A small model beats a large one.
FLARE was evaluated on Knowledge Graph Question Answering benchmarks (CWQ, WebQSP, GrailQA) and ALFWorld for cross-domain robustness, tested across multiple LLM backbones and agent frameworks. Three planning-level behavioral metrics tell the main story.
Across the KGQA benchmarks and ALFWorld, LLaMA-8B running FLARE frequently matched or exceeded GPT-4o running standard chain-of-thought reasoning. This held across multiple agent frameworks, indicating the improvement is not specific to one scaffolding approach. The mechanism explains the result: GPT-4o running a greedy policy suffers the same myopic commitment problem as any other model, just starting from a higher raw-capability baseline. FLARE addresses the structural problem; model size does not.
The paper also found that beam search and other compute-scaling variants of step-wise reasoning saturate quickly and plateau far below FLARE's performance. More compute on step-wise reasoning is not equivalent to future-aware planning.
Under FLARE, the remaining failures shift in character rather than disappearing. Errors arise primarily from insufficient search coverage (missing the right path because the lookahead did not explore that branch) and imperfect termination control (the agent loops or stops before reaching a solution). These are qualitatively different from myopic commitment and are recoverable with better search coverage or termination criteria, rather than requiring a different planning architecture.
The diagnostic setting uses deterministic, fully structured environments with explicit state transitions and evaluation signals available at planning time. This is a deliberate design choice that isolates agent-side decision failures from environment noise, but it limits direct generalization claims to stochastic or partially observable settings. FLARE's advantage also depends on the quality of the LLM's own lookahead simulations: if the model systematically mis-estimates outcomes in a particular domain, that error propagates into the planning step. The paper presents FLARE as a minimal instantiation and a research contribution rather than a production-ready component.
What this means
for building agents.
This paper is as useful as a diagnostic as it is as a recipe. The greedy-policy collapse is measurable before you know whether FLARE will fix it, and knowing the mechanism changes where you look when long-horizon agents underperform.
Where to go
from here.
Concrete next steps for applying the paper's findings.