Vibe Coding
Tip: Query a Local Tree-Sitter Graph Instead of Grepping With /graphify
Instead of letting an agent grep across files, run graphify's /graphify to build a deterministic tree-sitter AST graph of the repo (free, fully local, no embeddings) and then ask it to trace the path between two symbols or explain one concept. Because every edge is tagged EXTRACTED vs INFERRED, you can tell what was read directly from the source from what the tool inferred — useful before letting an agent refactor across module boundaries.
Source
↳ Follow the thread