Skip to content
Back to full roadmap
topiccore

Dynamic Re-planning

Plan doesn't end with the first version — it's revised after each step based on observations.

2 hours1 prereqs

Weakness of plan-and-execute: if the initial plan is wrong, execution is wasted. Dynamic re-planning:

  1. Produce initial plan
  2. Execute first step
  3. Evaluate result: is the plan still valid?
  4. Valid → continue. No → revise, restart.
  5. Mandatory re-plan checkpoint every N steps

Practical: mandatory in unpredictable environments like computer use / research agents. In coding agents, mandatory re-plan after compile errors.

Prerequisites