Zed's DeltaDB tosses Git's snapshot model for a stream of addressable deltas, so every edit—not just every commit—gets a stable identity, and the conversation that produced it is sewn directly alongside the code.
Every Keystroke Becomes a First-Class Artifact
Git freezes time at commits. DeltaDB captures everything in between. Every operation, from a single character insertion to a file rename, is a delta with its own URI. You can point to the code at any moment in its evolution, even while it's still being edited. Because deltas are conflict-free replicated data types, many agents and humans can hammer on the same file across different machines without stepping on each other—Zed calls them "worktrees" that mount to disk like normal directories.
The payoff: a message and the edit it triggered sit side by side. Neither drifts. From any line of code you jump to the conversation that birthed it, and from any line in a past chat you can see that code as it was or as it is today.
Why Git's Ceremony Fails When Agents Are Writing Code
Zed's co-founder argues that pull requests, review threads, and inline comments exist only because conversations happened outside the code. With agents now generating large swaths of software, the real artifact isn't a diff—it's the back-and-forth dialogue that shaped the diff. DeltaDB makes that dialogue the single source of truth. Agents can pull context from past conversations, convene the prior agents that touched a line, and ask "why is this written this way?" without waiting for a human to summarize.
Git and CI don't disappear. They just stop being the place where collaboration is forced to happen. Zed keeps them for running checks and connecting to the outside world, while DeltaDB becomes the collaborative substrate.
The Waitlist Is Open
Beta ships in a few weeks. Zed is already taking signups. If you've ever wasted a day trading comments on a pull request that should've been a five-minute hallway chat, DeltaDB is aimed directly at you—and at the agents that will write most of the code soon.
Source: Software Is Made Between Commits
Domain: zed.dev
Comments load interactively on the live page.