Search papers, labs, and topics across Lattice.
This study investigates the coordination challenges faced by autonomous coding agents in the context of pull requests (PRs) and introduces grite, an open-source coordination substrate that operates without a central server. By leveraging an append-only, signed event log stored within git, the authors demonstrate that grite significantly reduces duplicate and conflicting work, decreasing redundancy from 78% to 0% while tripling useful throughput. Furthermore, the system ensures that all agents maintain a consistent view of the coordination log, allowing for the automatic recovery of failure modes that are typically obscured in traditional PR histories.
Autonomous coding agents can achieve a staggering 300% increase in useful throughput while eliminating redundant work entirely by using a decentralized coordination substrate.
Autonomous coding agents now open millions of pull requests, yet large-scale studies find their PRs are produced faster but accepted less often - a coordination and trust gap that pull-request-level telemetry cannot explain. We argue the missing signal lives before the PR, in how concurrent agents claim, divide, and collide over shared work. We study this process through grite, our open-source coordination substrate that needs no central server and stores its records inside git itself, so its append-only, signed event log captures the coordination process directly. We show that (i) this shared substrate reduces duplicate and conflicting work at bounded overhead - the share of work that merely re-does a teammate's task falls from 78% to 0% while useful throughput more than triples; (ii) every agent's copy of the log converges to the same state with no write silently dropped, where a file-based tracker loses concurrent writes; and (iii) the log is a mineable artefact from which concrete failure modes - conflicting edits, lock starvation, redundant rediscovery, race-to-close - are automatically recoverable with provenance, several invisible in pull-request history. We release the dataset, harness, and mining toolkit.