Token Efficiency Encyclopedia

Incremental Plan Updates

Update the execution plan incrementally rather than re-planning from scratch on every turn. This avoids re-consuming the full context and keeps the agent focused on the remaining work.

How It Works

After the initial plan is created, each turn modifies only the parts that have changed: marking steps complete, adding new steps discovered during execution, or adjusting order based on new information. The plan is stored in state and injected into the prompt as a compact representation.

Benefits

Anti-patterns

See Also

Tools