README.md 95 lines · 3.9 KB This repository is the open-source heart of Oak : version control at the speed of agents . It's developed as a Cargo workspace: a reusable VCS library plus the oak command-line client that agents drive. Bring your own agent (Claude Code, Codex, Cursor, …); Oak is the foundation it reads, writes, branches, and collaborates through. The substrate is shaped around how agents actually work — branch-per-session as the unit of work, branch descriptions in place of per-commit messages, and content-addressed lazy mounts that get an agent editing any repo in seconds. Because it's content-addressed and hydrates on demand, it's also far faster than git for agent workloads — but the speed is a consequence of the design, not the pitch. Crate Path crates.io What it is oakvcs-core core/ oakvcs-core The VCS foundation: BLAKE3 content hashing, content-defined chunking, diff/merge, the Blob/Manifest/Commit/Tree data model, and an optional client-side local repository (SQLite + git backends).…