Ordewell Launches Open-Source Orchestrator to Fix AI Coding 'Context Drift'
The new tool separates planning from execution to prevent AI agents from losing the thread during complex coding tasks.
Ordewell has launched as an open-source multi-agent task orchestration tool designed to solve the instability of long-running AI coding sessions. The tool allows developers to decompose a single high-level goal into a visible, editable, and ordered plan of tasks before any code is written.
To prevent the "context drift" common in AI agents, Ordewell implements a strict "one task, one session" rule. This ensures that every individual task begins with a fresh context window, eliminating the performance degradation that typically occurs as a session grows. The system further separates the planning phase, which is read-only, from the execution phase handled by a writing-runner. This architecture prevents agents from making premature or unverified changes to a codebase during the initial brainstorming stage.
Solving the Black Box Problem
Most current AI coding agents struggle with multi-step goals because they attempt to maintain the entire state of a change within a single, continuous session. This often leads to compounding errors where a mistake in an early step remains unnoticed until the final stages of implementation. As the Ordewell author noted on Hacker News, "A long session doesn't announce that it has lost the thread — it just keeps going, which is the part that costs you."
By treating the plan as a typed artifact, Ordewell shifts the AI's role from a "black box" executor to a planner-then-executor workflow. This allows developers to audit and edit the plan manually, catching flawed logic before spending tokens or corrupting files. The author highlighted this necessity, stating that in previous workflows, "The plan itself was never anywhere I could read it, so there was nothing to correct — only something to undo."
Industry Implications and Integration
This orchestration approach allows for optimized resource allocation by assigning specific runners, models, and levels of "thinking effort" to different tasks. For example, a developer can assign a high-reasoning model to a complex security refactor while using a cheaper, faster model for a README update.
Unlike many orchestration layers, Ordewell does not require additional API keys to function. It supports existing tools including Claude Code, Codex, and OpenCode. To ensure reliability, the tool avoids asking the LLM if it succeeded; instead, it verifies task completion using exit codes and unique markers in the output.
Availability and Next Steps
Ordewell is licensed under Apache-2.0 and is currently available via npm and as a VS Code extension. As the tool gains adoption, developers will be watching to see how this modular approach to context management impacts the success rate of autonomous agents handling enterprise-scale repositories.