Anthropic Launches Claude Code Projects in Beta: Parallel Cloud

Anthropic has redesigned Projects in Claude Code, transforming the feature from a simple folder—a set of files plus a single chat—into a single ongoing conversation in which Claude acts as a coordinator. You describe the work, and Claude decides what becomes a thread. Each thread is a full Claude Code cloud session running on its own branch and its own copy of the repository. Threads run in parallel, report back to the conversation, and continue after you close your laptop. In its launch post, Anthropic describes the feature as "one conversation that splits itself into parallel cloud sessions."


Coordinator and Threads


The architecture has two layers. The project conversation is the coordinator. It reads what you send, answers quick questions in place, and starts threads for actual work. It sees what threads report back—not every step they take. Threads are the workers. A thread opens a pull request when the work calls for one, then monitors that pull request with auto-fix enabled. It pushes fixes when CI fails and replies when checks pass.


Threads can delegate, too. Each thread can further split its assignment using subagents, loops, and workflows.


How It Works in Practice


Anthropic offers two illustrative examples:


  1. Latency optimization: Set a goal to reduce checkout p75 latency, then ask Claude to profile each endpoint, test optimizations, and open pull requests in parallel threads.
  2. Deprecation cleanup: Retire a deprecated v1 endpoint across API, web, and mobile repositories—one thread per repository—with Claude reporting which pull requests merge first.

  3. When two threads touch the same code, the overlap surfaces as an ordinary git merge conflict.


    Interactive: How a Claude Code Project Routes Work


    Click a task. Watch the coordinator answer in place, save memory, or open a cloud thread on its own branch.


    (Modeled on Anthropic's Claude Code projects documentation. Thread timings are illustrative.)


    Why It Matters in 2026


    As of 2026, agentic coding workflows have shifted from single-session assistants toward persistent, parallel cloud execution. Claude Code Projects arrives as Anthropic's answer to a growing demand for asynchronous, multi-repository development that survives laptop closures, network drops, and long-running CI pipelines. By turning the project into a coordinating conversation rather than a static folder, Anthropic is positioning Claude not just as a coding assistant but as an orchestration layer for distributed software work.

    via MarkTechPost

Related