How we cut repo-wide symbol indexing for LLM agents from 30s to 98ms
If your coding agent has ever stalled for tens of seconds on "what's in this repo?" — or burned hundreds of tokens re-reading a file after a failed edit — this is the story of why that happens and how we fixed it.
TL;DR — we rebuilt code tooling for agents that have no hands, no eyes, and no memory:
repo_map in 98ms (was tens of seconds): Rust tree-sitter parse daemon + SQLite index + incremental self-heal
Every write is transactional, with an undo journal that survives kill -9 — no more silently lost work






