Preprint
Reinforcement Learning

Task-Decoupled Planning for Long-Horizon Agents

Yunfan Li, Bingbing Xu, Xueyun Tian, Xiucheng Xu, Huawei Shen
January 12, 2026arXiv.org3 citations

3

Citations

1

Influential Citations

arXiv.org

Venue

2026

Year

Abstract

Recent advances in large language models (LLMs) have enabled agents to autonomously execute complex, long-horizon tasks, yet planning remains a primary bottleneck for reliable task execution. Existing methods typically fall into two paradigms: step-wise planning, which is reactive but often short-sighted; and one-shot planning, which generates a complete plan upfront yet is brittle to execution errors. Crucially, both paradigms suffer from entangled contexts, where the agent must reason over a monolithic history spanning multiple sub-tasks. This entanglement increases cognitive load and lets local errors propagate across otherwise independent decisions, making recovery computationally expensive. To address this, we propose Task-Decoupled Planning (TDP), a training-free framework that replaces entangled reasoning with task decoupling. TDP decomposes tasks into a directed acyclic graph (DAG) of sub-goals via a Supervisor. Using a Planner and Executor with scoped contexts, TDP confines reasoning and replanning to the active sub-task. This isolation prevents error propagation and corrects deviations locally without disrupting the workflow. Results on TravelPlanner, ScienceWorld, and HotpotQA show that TDP outperforms strong baselines while reducing token consumption by up to 82%, demonstrating that sub-task decoupling improves both robustness and efficiency for long-horizon agents.

Analysis

Why This Paper Matters

Long-horizon tasks remain a critical challenge for LLM-based agents, as planning over extended sequences often leads to error accumulation and high computational costs. Existing methods fall into two paradigms: step-wise planning, which is reactive but short-sighted, and one-shot planning, which is brittle to execution errors. Both suffer from entangled contexts, where the agent must reason over a monolithic history spanning multiple sub-tasks, increasing cognitive load and allowing local errors to propagate. This paper addresses this fundamental bottleneck by introducing Task-Decoupled Planning (TDP), a training-free framework that decouples tasks into a DAG of sub-goals, confining reasoning to the active sub-task. This is significant because it offers a practical, immediate solution without requiring model retraining, and it directly tackles the scalability and robustness issues that hinder real-world deployment of autonomous agents.

The paper's approach is particularly relevant as AI agents are increasingly expected to perform complex, multi-step tasks in dynamic environments. By isolating sub-tasks, TDP not only reduces error propagation but also cuts token consumption dramatically, addressing both reliability and cost—two key barriers to adoption. The results across three diverse benchmarks (TravelPlanner, ScienceWorld, HotpotQA) demonstrate generalizability, making this a valuable contribution to the growing field of LLM agent design.

Technical Contributions

  • Task Decoupling via DAG: TDP introduces a Supervisor that decomposes a high-level task into a directed acyclic graph of sub-goals, capturing dependencies while allowing independent execution of sub-tasks.
  • Scoped Contexts: A Planner and Executor operate with contexts limited to the active sub-task, preventing the agent from reasoning over irrelevant history and reducing cognitive load.
  • Local Replanning: When execution deviates, replanning is confined to the current sub-task, avoiding disruption to the overall workflow and preventing error propagation.
  • Training-Free: TDP requires no fine-tuning or additional training, making it immediately applicable to existing LLMs and agent frameworks.
  • Efficiency: By limiting context scope, TDP reduces token consumption significantly, which is crucial for long-horizon tasks where context length is a major cost factor.

Results

The paper reports that TDP outperforms strong baselines on all three benchmarks: TravelPlanner, ScienceWorld, and HotpotQA. Specifically, TDP achieves higher task success rates while reducing token consumption by up to 82% compared to baseline methods. This demonstrates that decoupling sub-tasks not only improves robustness (by preventing error propagation) but also enhances efficiency (by reducing the amount of context processed). The consistent gains across diverse domains suggest that the approach is general and not overfit to a specific task type.

Significance

TDP offers a new paradigm for long-horizon agent planning that emphasizes modularity and context isolation. This could inspire further research into hierarchical planning and context management in LLM agents. The training-free nature of TDP means it can be immediately integrated into existing systems, potentially accelerating the deployment of reliable autonomous agents in real-world applications such as travel planning, scientific reasoning, and question answering. Moreover, the significant reduction in token consumption has economic and environmental implications, making large-scale agent deployment more feasible. Future work might explore adaptive DAG construction or integration with memory mechanisms to handle even more complex tasks.