What happened

Cheap AI coding models just proved they can outperform solo frontier models — as long as a smarter model plans the work first. Cursor, the AI coding startup recently acquired by Elon Musk's SpaceX for $60 billion, ran an experiment that split coding work between two types of agents: expensive "planner" models that break a goal into smaller tasks, and cheaper, faster "worker" agents that actually write the code.

To test the setup, Cursor gave its new agent swarm an extreme challenge: rebuild SQLite from scratch in Rust, using nothing but the 835-page SQLite documentation. No source code, no test suite, no SQLite binary, and no internet access. The result was graded against sqllogictest, a benchmark with millions of SQL queries and known correct answers — a test the swarm didn't even know existed.

Four setups competed: GPT-5.5 working solo, Grok 4.5 working solo, Opus 4.8 as planner paired with Composer 2.5 as worker, and Fable 5 as planner paired with Composer 2.5 as worker. Every planner-worker configuration hit 100 percent on the test suite. Cursor's older, single-agent swarm from an earlier generation, by contrast, got stuck untangling its own merge conflicts and never caught up.

Why it matters

The headline result is simple: splitting "thinking" from "typing" fixes a problem that has quietly limited AI coding agents for years — context overload. A single agent working alone on a big task has to hold the overall goal, the current subtask, and the surrounding codebase in its head at once. Cursor found that this is exactly when agents start to drift, lose track of instructions, or produce sloppy code.

By separating roles, planners using powerful frontier models only decide what needs to happen next, while worker agents using faster, cheaper models execute narrowly defined tasks. Neither role has to juggle both jobs. Cursor says this division, not raw parallelism, is what actually lets agent swarms scale.

The numbers behind this are striking. An earlier browser-based swarm from Cursor topped out at around 1,000 commits per hour, largely because a single "integrator" agent kept becoming a bottleneck while resolving conflicts. The new swarm reached 1,000 commits per second — a rate so fast that standard Git couldn't handle it, forcing Cursor to build its own version control system just to keep up.

At that speed, new failure modes appeared that human engineering teams never encounter. Cursor calls one of them "split-brain design": two planner agents unknowingly build the same feature in two different places, using two different approaches. Oddly, giving planners awareness of each other made things worse, not better, since they started blocking each other with competing edits.

How to use it today

For teams and solo builders, the practical takeaway isn't "go build a custom agent swarm" — most people don't need that scale. It's that pairing a strong reasoning model for planning with a cheaper model for execution is now a viable, cost-effective workflow, even outside Cursor's own product.

In practice, this looks like: use a frontier-tier model to write a clear task breakdown or spec, then hand each subtask to a faster, cheaper model to implement. Cursor's swarm also validated a few smaller techniques worth borrowing for any AI-assisted workflow — like maintaining a lightweight "field guide," a running notes file with a strict line limit that captures surprising lessons so future runs don't repeat mistakes, and reviewing AI output from multiple angles (full transcript, output-only, and codebase-only) since no single review method catches everything.

MyKreaTool AI chat — try ChatGPT, Claude and Gemini in one place. Free on MyKreaTool.Open the tool →

If you want to experiment with this planner-worker approach without committing to a paid coding platform, you can prototype prompts and task breakdowns using free tools at [mykreatool.com](https://mykreatool.com) before wiring them into a full agent pipeline.

Cursor also had agents record major decisions in shared design documents, with code linked back to those documents through references checked automatically at compile time. When conflicts still happened, a neutral "referee" agent stepped in to resolve them, rather than blocking the whole swarm.

Who benefits

Engineering teams running large, well-defined coding tasks — migrations, boilerplate generation, test writing, documentation-driven rebuilds — stand to gain the most immediately. Startups and solo developers benefit too, since cheap worker models mean a lot of implementation work no longer requires paying frontier-model prices for every line of code.

Product and engineering managers get a new lever for cost control: reserve expensive reasoning models for planning and architecture decisions, and route routine implementation to cheaper models. AI tooling companies also benefit from this shift, since it validates multi-agent orchestration as a real product direction rather than a research curiosity.

Risks

The experiment doesn't mean junior developers are obsolete overnight, but it does sharpen a real question about entry-level coding work. If cheap models can reliably execute well-specified tasks at 100 percent accuracy, the value of hiring humans purely to write boilerplate or implement clearly scoped features shrinks.

There are also technical caveats. The SQLite rebuild was a controlled, documentation-rich benchmark — real-world codebases are messier, with legacy quirks, incomplete documentation, and business logic that isn't written down anywhere. Cursor itself noted that agents needed special handling to avoid "split-brain" duplication and merge chaos at high speed, meaning this approach still requires careful infrastructure, not just swapping in a cheaper model.

Finally, relying on a fixed field guide and compile-time reference checks assumes a codebase with strong typing and tooling support — teams working in looser, dynamically typed environments may not see the same reliability gains.

Conclusion

Cursor's agent swarm experiment suggests that the biggest gains in AI coding right now don't come from a single smarter model, but from smarter division of labor between models. When a frontier model plans and a cheap model executes, coding tasks that once required careful human oversight can be completed with perfect test results. For entrepreneurs and developers watching AI reshape software work, the message is clear: the next competitive edge isn't just which model you use, but how you orchestrate cheap and expensive models together.