Zed's Delta: A New Era of Agentic Code Review
For years, IDEs have been evolving to keep up with AI coding agents — but Zed just took a fundamentally different approach. Today they launched Delta, a multiplayer environment built specifically for coding with AI agents and reviewing what they build. And it might change how we think about code review entirely.
The Problem Delta Solves
When AI agents write code, they generate a lot of it — fast. But the current workflow is broken: an agent writes code in your IDE, you get a diff, and you review it line by line trying to understand why the agent made each decision. The conversation that led to the code? Gone. The context? Lost. The reasoning? Buried in a chat log you'll never read again.
Delta solves this by keeping code and conversations connected. Every edit an agent makes is tied to the conversation that produced it. When something looks wrong, you don't reconstruct intent from a diff — you ask the agent to explain it or fix it, right there in the thread.
DeltaDB: The Technical Innovation
The core of Delta is DeltaDB, a real-time replication system that syncs both the conversation thread and the git worktree together. Here's what makes it clever:
- It works with your existing git repo. Every edit and conversation is captured between commits. Teammates who never open Delta see a normal git repo.
- Comments survive code changes. Unlike commit-based platforms where comments attach to snapshots and become stale, Delta anchors comments to code as it evolves.
- Full history preservation. The conversation that produced a piece of code three years ago is still accessible, right where it's relevant.
This is a fundamentally different data model from traditional git-based code review. Instead of attaching comments to commits (which become immutable snapshots), Delta attaches them to living code that evolves over time.
Multiplayer Agentic Development
The most interesting aspect of Delta is its multiplayer model. When an agent is working on a task, your teammates can:
- Pick up the thread — see the conversation, the decisions made, and the current state of the code
- Add comments — both on the conversation and on specific lines of code
- Direct the agent — ask it to explain or fix something, with full context of the original conversation
This means agentic development becomes a team sport rather than a solo activity. One person starts a task with an agent, another person reviews and redirects, and the agent maintains context throughout.
Why This Matters
The AI coding tools market is exploding. GitHub Copilot, Cursor, Windsurf, Claude Code — they all help you write code faster. But none of them solve the review and collaboration problem that emerges when agents are writing most of the code.
When a human writes code, you can ask them "why did you do it this way?" and get an answer. When an AI agent writes code, that answer should be built into the system — not lost in a chat history. Delta is the first tool I've seen that treats agent-generated code as a first-class citizen with full provenance tracking.
The Performance Philosophy
Zed built its reputation on performance — it's one of the fastest code editors available, built in Rust. Delta inherits that philosophy. The team describes performance and craft as an "obsession," and Delta is built on the same principles. In a world where AI agents can generate thousands of lines of code in seconds, your IDE needs to keep up. Delta is designed for that reality.
What's Next
Delta is currently in private beta. Zed plans to eventually integrate DeltaDB into Zed itself, but they felt the best experience required an entirely new application. That's a bold bet — building a separate product rather than bolting agent collaboration onto an existing editor.
The question is whether developers will adopt a new tool in their already-crowded workflow. But if agentic coding continues to accelerate the way it has been, the tools we use to review and collaborate on agent-generated code will need to evolve. Delta is one of the first to recognize that this requires a fundamentally new approach.
Delta is in private beta. You can request access at zed.dev.
Sources: Zed Blog — Introducing Delta
Top comments (0)