DoltLite reaches Beta: SQLite fork with Git-style version control built by 2,000 agent PRs
DoltLite: A SQLite fork with Git-style version control, built with 2k agent PRs

DoltLite, a fork of SQLite that swaps the B-tree for a content-addressed Prolly Tree, has reached Beta after just five months and about 2,000 pull requests generated by AI agents. The Beta milestone brings storage format stability, near-complete SQL compatibility (passing 99.46% of SQLite's acceptance tests), full Git-style version control including branching and merging, and production-ready performance. While writes incur a tax—small autocommit writes are about 3.1x slower—reads are near parity, making it a viable embedded database with version control for applications that need branching, merging, and sync.
It only took about 2,000 pull requests but DoltLite going Beta proves a team of agents certainly could.
- WatchDog
So the main feature of this project is that it's easy to fork a database, however it's 1.2x to 4x slower than sqlite, and it's level of testing and validation will be nothing like sqlite.
The simple way to fork a sqlite db is just to copy it, but if that is too slow you could use it with a copy on write filesystem, either something native, a FUSE filesystem, or build a sqlite VFS.
That would probably be faster to build, faster to run, and easier to validate.
- vrighter
Why would I trust my data to a vibe coded database, over a battle tested, tested to hell and back one?
- nylonstrung
Everything touching this ecosystem (Gas Town, Dolt, Beads) seems like the absolute nadir of vibecoded slop
This specific community has been a Schelling point for some of the worst engineering practices I've ever seen and a desire to abstract away all details of code to LLM personas like the "Refinery" and "Deacon"
- vonnieda
Psyched to see this! I've been working on my own similar thing that sucks and I don't want to - I want to write a local first music app that syncs across all my devices. This might get me there!
- grebc
Did I read that correctly that there’s no WAL?