Documentation
README
Map this project into memory
Everything else in claude-db's memory is testimony: it records what happened, turn by turn, as it happened. A fresh install knows none of that, and stays useless for weeks while it fills up.
This fills the gap from the one source available on day one — the code itself, in two passes.
Pass 1 — the code graph
Run this first, from the project root:
claude-db scan
It parses every supported source file and stores each symbol and each relationship between them: what calls what, what imports what, what extends what. It is deterministic, costs no tokens, and takes seconds. Report the symbol and edge counts it prints.
Once it has run, find_usages answers structural questions from the graph:
This is the opening of the README. Read the full README on GitHub.