🔥 New Video: This Open Source Repo Just Solved Claude Code's #1 Problem
Claude Code's biggest weakness is memory. On a big codebase it greps through your files every time you ask it something, burns tokens doing it, and forgets the layout the second the session ends. This video walks through Graphify, a free open source tool (nearly 70,000 stars) that fixes that by turning your whole repo into a knowledge graph Claude queries instead of crawling files. I also run a real token test so you can see the actual saving, not the hyped number. Here's what's inside: Step 1: What it actually does Graphify reads your repo once and builds a map. Not just that file A connects to file B, but why. Claude reads the map instead of grepping. Fewer tokens, more accurate answers, and it remembers the structure. Step 2: The three passes Pass 1 is your code, parsed locally with tree-sitter (classes, functions, imports, call graphs), no LLM, free. Pass 2 transcribes any audio/video locally with Whisper. Pass 3 uses Claude sub agents to read docs, PDFs and images and slot them into the graph. Step 3: Why it's not graph RAG Graphify uses no embeddings. It's best for mapping a codebase and how it's wired. A graph RAG system is better for questioning a huge pile of unstructured PDFs. Think of Graphify as sitting between an Obsidian vault and a full RAG setup. Step 4: Installing it Easiest path in Claude Code: copy the Graphify GitHub URL, paste it into Claude, and ask it to install Graphify for you. It comes with a skill that tells Claude which command to use, so you don't have to memorise anything. Step 5: The token test I cloned Papermark (a real, sizable repo), built the graph, then asked the same question twice. With Graphify: ~54k tokens. Without: ~108k. Same correct answer, about half the cost. Not the 70x people throw around, but a real saving that pays for itself. Resources I use: - Graphify (GitHub): https://github.com/safishamsi/graphify Build the map once, and with the commit hook installed it keeps itself current for free. That's the memory people keep talking about.