Coding Assistants

8 Days, 3 Agent Teams: What Changed and What It Costs

Cursor, Devin and Claude Code all shipped the same idea inside 8 days — a coordinator that does not write code, only delegates. 3 things they share, and the one that decides your bill.

AAICreatorHub Team18 Sept 2026 9 min read
Coding Assistants
8Days
aicreatorhub.netGuide
8 Days, 3 Agent Teams: What Changed and What It Costs
Short answer: all three now put a coordinator in front of the work. It does not write code — it splits a goal into jobs and hands them to parallel workers. That is the shift. The catch is that all three run those workers in the cloud, billed by the token, often while you are asleep.

Between 10 and 17 September 2026, three of the biggest names in AI coding shipped what is recognisably the same product. Not a coincidence of marketing — the same architecture, within eight days.

ShippedWhat it is calledHow work is split
Cursor10 SeptemberProjectsA coordinator directs subagents; runs on its own machine in the cloud
Devin16 SeptemberCode ScansAgentic MapReduce: plan, shard, map across parallel agents, reduce to one report
Claude Code17 SeptemberProjects (beta)A coordinator splits a goal into parallel cloud sessions called threads, each on its own branch

If you use any one of them, the other two tell you where it is going. Here is what they actually share, and what that means for the person paying.

1. The coordinator does not write code

This is the real change, and it is easy to miss because it sounds like a detail. In all three, the top-level agent never touches the codebase. It reads the goal, decides what the jobs are, hands them out, and reads the results back.

  • Cursor says it plainly: the coordinator "doesn't write code itself but directs other agents that do" — and because it only delegates, it is never blocked and stays responsive while work runs.
  • Claude Code splits a goal into threads, each a separate cloud session working its own branch and its own copy of the repository.
  • Devin shards the codebase into focused batches, runs parallel agents over them, then has a final agent merge, de-duplicate and rank the findings.
The practical effect is the same in all 3: you stop managing an agent and start directing the work. You describe an outcome rather than a task, and the splitting is somebody else's problem.

It also explains why they all arrived together. A single agent is limited by its context window — the longer a job runs, the more it forgets. Splitting the job across many agents, each with a small focused context, is the obvious way around that ceiling. Devin says so directly: the point of sharding is to keep "each agent's context focused" and spend the reasoning budget on relevant code instead of repeated searching.

2. Everything runs in the cloud — that is the catch

All three execute on the vendor's machines by default. That buys you real things: work continues when you close your laptop, and you can run far more agents in parallel than your own machine would allow.

Claude Code Projects is cloud-only at launch. Every thread runs on Anthropic's servers; local tool support is stated as coming but is not here yet. If your code or credentials must not leave your own infrastructure, that rules it out today — not as a preference, as a fact.

Cursor is the most flexible of the three: cloud by default, but it will spin up a local agent when something has to be tested on your machine. Worth knowing if you work on anything that cannot be uploaded.

Availability is narrow too. Claude Code Projects is in beta for select Pro and Max subscribers only — Team and Enterprise customers do not have it. Cursor Projects is in beta and rolling out to all users.

3. The bill grows while you are not watching

This is the part to sit with before you turn any of it on, and it is where the money angle is genuinely different from a normal coding assistant.

A chat assistant costs you tokens while you are typing. A coordinator with parallel workers costs you tokens per worker, in parallel, for as long as the job runs — and Cursor's Projects can be told to work without being prompted at all: watch a Slack channel, run on a schedule, follow every pull request and fix CI when it breaks.

Do the arithmetic before you enable a schedule. A flagship at $50 per million output tokens with 5 workers running in parallel is five bills at once, and none of them stop because you went to bed. That is not an argument against using it — it is an argument for setting a budget the first day rather than the first invoice.
  • Start on a small, bounded job — one migration, one scan — and read the token usage afterwards before you trust it with more.
  • Pick the model per job, not per tool. A coordinator reasoning about what to do needs a good model; workers doing mechanical edits often do not. Check whether your tool lets you set them separately.
  • Turn scheduled or event-driven runs on last, once you know what one manual run costs. A coordinator that wakes on every PR is the fastest way to a surprise.
  • Watch the cache line. These systems re-read the same repository constantly, so cached input is most of the bill — which is exactly why Anthropic cut Fable 5.1's cache reads to $0.25 per million.

Which one, if you have to pick

Honestly: whichever is attached to the tool you already use. The architectures are close enough that switching editors to get one of these is not a good trade in September 2026. What differs is fit.

Pros

  • Work that outlives a single chat — a feature over several PRs, a migration, a long refactor
  • Investigations across a whole codebase, where one agent would run out of context
  • Jobs you want progressed while you are not at the desk
  • Teams already paying for one of these tools, where the coordinator is included

Cons

  • Anything that cannot leave your infrastructure — all three are cloud-first and Claude Code is cloud-only today
  • Small, well-understood changes, where a single agent is faster and far cheaper
  • Tight or unpredictable budgets, until you have measured one real run
  • Codebases with no tests — a coordinator can produce wrong work in parallel just as easily as right work
The test that settles it: run one real job you would otherwise do yourself, then compare the token cost against the time it saved. Everything above is architecture. That number is the answer for your situation, and nobody else's benchmark can give it to you.
Details here come from each company's own announcement, published between 10 and 17 September 2026. All three are betas and are changing quickly — check the vendor's page before relying on any specific behaviour.
📊 At a glance

Save this summary as an image or share it.

AAICreatorHubCoding Assistants8 Days, 3 Agent Teams: WhatChanged and What It Costs1Cursor says it plainly: the coordinator"doesn't write code itself but directs otheragents that do" — and because it only…2Claude Code splits a goal into threads, each aseparate cloud session working its own branchand its own copy of the repository.3Devin shards the codebase into focusedbatches, runs parallel agents over them, thenhas a final agent merge, de-duplicate and rank…aicreatorhub.netSave & share
Share:
A

AICreatorHub Team

The AICreatorHub editorial team is a group of hands-on AI practitioners, writers and developers based in India. We test AI tools and models ourselves, track official releases from OpenAI, Anthropic, Google, Meta and xAI, and translate them into simple, India-first guides in English and Hindi. Every article is written for real Indian use cases — pricing in rupees, free-tier tips and practical, tested steps — so you get accurate, up-to-date and genuinely useful AI information.

Related guides

View all