
Manyana + NexaAPI: CRDT Version Control Meets AI Generation APIs
Bram Cohen — the engineer who created BitTorrent — just released Manyana , a CRDT-based vision for the future of version control that hit #1 on Hacker News on March 22, 2026. If you're building developer tools in 2026, this is a must-read. And there's a powerful lesson here about how AI APIs can supercharge projects like this. What Is Manyana? Manyana is a fundamentally new approach to version control built on CRDTs (Conflict-Free Replicated Data Types) . The core insight: merges should never fail . Manyana guarantees merge(A, B) == merge(B, A) — commutativity and associativity at the mathematical level. But "conflict-free" doesn't mean "no conflicts worth showing." Cohen solved the hard UX problem: when concurrent edits are too close together, Manyana surfaces them with much more informative output than Git's opaque markers. Traditional Git vs Manyana Conflict Output Git gives you this: <<<<<<< left ======= def calculate ( x ): a = x * 2 logger . debug ( f " a= { a } " ) b = a + 1 ret
Continue reading on Dev.to JavaScript
Opens in a new tab




