Zed Launches Delta to Replace Git Where AI Agents Write Code
Zed's new standalone app turns agent coding sessions into shared, reviewable, real-time multiplayer threads backed by a CRDT-based version control layer
- Delta launched in private beta: Zed's new standalone multiplayer app lets teams code with agents and review the results in shared, persistent threads.
- Powered by DeltaDB: A CRDT-based version control layer that captures every edit operation between commits, not just snapshots, keeping code and conversation permanently linked.
- Real-time multiplayer: Share a thread link and teammates join as first-class participants who can comment, co-edit prompts, or pick up work without needing a commit or push.
- Claude Code integration: Terminal Claude Code sessions sync live into Delta threads via the open Agent Client Protocol (ACP), with full conversation and code history visible to collaborators.
- Browser version via WASM/WebGL: Delta.dev runs the same Rust app compiled to WebAssembly, so teammates can open threads in a browser with no install required.
- Sign up for early access: Invites rolling out over coming weeks at zed.dev/deltadb; pricing not yet announced.
Delta is a brand-new, standalone application from the team behind the Zed editor. It is designed to be a multiplayer environment where developers and AI agents write code together, and where reviewing that code happens in the same place the work was done. The first private beta invites went out today, with more rolling out over the coming weeks.
This is not a Zed plugin or a new panel inside the editor. Delta is its own app, built from scratch around a new idea: the conversation between you and an agent is the actual source of your software, and your tooling should treat it that way.
The gap Git was never designed to fill
Increasingly, the conversation that generates code is becoming the true source of software. That conversation unfolds continuously and must be cross-referenced to the code as it changes. Git, organized around discrete commits, was never designed to support this. Every prompt, every agent decision, every mid-session course correction disappears the moment you commit.
The announcement is directed at the growing fraction of developers whose workflows involve AI coding agents: tools that generate code through multi-turn conversations that Git's snapshot model permanently discards. Pull requests and review threads exist precisely because the discussion and the code lived in separate places. Delta's bet is that putting them in the same place makes the ceremony disappear.
DeltaDB: the engine underneath
Delta is built on DeltaDB, a new kind of version control the Zed team has been building for over a year. DeltaDB breaks your work into a stream of fine-grained deltas. Where Git captures a snapshot at each commit, DeltaDB captures every operation in between and gives each one a stable identity. Because every delta can be addressed on its own, you can point to the code at any moment in its evolution, even as it keeps changing.
DeltaDB is built on operation-based conflict-free replicated data types, or CRDTs, a class of distributed data structures originally designed for collaborative text editing and since deployed in distributed databases including Redis, Riak, and Azure Cosmos DB. CRDTs are the same technology that makes Google Docs feel seamless: multiple people editing the same document simultaneously, with changes that always converge without conflicts.