
Kitesurf is a cloud-hosted browser for AI agents, built to help developers automate browser-based tasks more efficiently.
Cursor’s upgraded agent swarm rebuilt SQLite in Rust from documentation only, with planner agents directing cheaper worker models. The setup eventually reached 100 percent on the test suite in every configuration while the older swarm struggled with merge conflicts.

Cursor compared an upgraded agent swarm with its predecessor by asking both systems to recreate SQLite in Rust using only documentation. Source code, internet access, the SQLite binary, and test suites were withheld. Every configuration of the new system eventually reached 100 percent on the test suite, while the older swarm became bogged down by merge conflicts. The result highlights the importance of coordinating agent work, not just running more agents in parallel.

The upgraded swarm separates agents into two roles: planner agents use powerful frontier models to break goals into smaller tasks, while worker agents use faster, cheaper models to carry out the work. Cursor says this split helps manage context because planners do not write code and workers do not plan. The task tree adapts as the work progresses, reducing the chance that a single agent loses track of the overall goal during long jobs. For teams evaluating AI coding tools, the key takeaway is that architecture may matter as much as model strength.

Cursor’s earlier system used worker agents, a judge agent, and an integrator for conflicts, but the integrator became a bottleneck. The new swarm reached 1,000 commits per second, prompting Cursor to build its own version control system for agent-scale collaboration. In the Grok 4.5 runs, the old swarm produced 68,000 commits in two hours and accumulated more than 70,000 merge conflicts, while the new run stayed below 1,000. Cursor also used shared design documents, compile-time references, neutral conflict resolution, and multiple review perspectives to control drift.

Costs ranged from $1,339 for the Opus hybrid to $10,565 for GPT-5.5 running alone, according to the article. Workers used at least 69 percent of tokens in every run and usually more than 90 percent, making worker pricing a major cost lever. In one comparison, GPT-5.5 workers alone cost $9,373, while the entire worker fleet in the Opus and Composer setup cost $411 at comparable quality. Cursor’s broader implication is clear: use frontier models where ambiguity is highest, then let cheaper models execute well-defined tasks.

Kitesurf is a cloud-hosted browser for AI agents, built to help developers automate browser-based tasks more efficiently.

A Claude Code usage log suggests agentic AI can consume far more electricity than simple chat queries.

OpenAI Presence targets production AI-agent deployments for customer service and internal workflows.

After the Hugging Face incident, METR says serious AI agent failures need independent root-cause investigations.