graphify (Safi Shamsi, Graphify Labs, Y Combinator S26) turns an entire project into a queryable knowledge graph, invoked via /graphify from Claude Code, Cursor, Codex, Gemini CLI, and about fifteen other clients. Observed on August 6, 2026: 103,187 stars for a repository created on April 3, Apache-2.0, Python.

Three commitments underpin the project. Code is parsed locally into tree-sitter AST, with no LLM: deterministic, nothing leaves the machine, no API key required for a purely-code corpus. Every edge carries its provenanceEXTRACTED if explicit in the source, INFERRED if graphify resolved it —, « so you can tell what was read directly from what was inferred ». And the project defines itself against vector RAG: « Not a vector index. No embeddings, no vector store: a real graph you traverse. »

Not a vector index. No embeddings, no vector store: a real graph you traverse.

**Safi Shamsi** — créateur et mainteneur de graphify , github.com

Usage replaces grep. query returns a subgraph for a natural-language question, path A B traces the path between two entities, explain unpacks a concept. Three outputs: an interactive graph, a readable report (god nodes, surprising connections, suggested questions), and a persistent graph.json, queryable weeks later.

Coverage extends beyond code: 36 tree-sitter grammars, but also SQL, Terraform, Apex, MCP configurations, package manifests, Office, PDFs, images, and locally transcribed video. # WHY: comments and design reasoning become full-fledged nodes linked to the code they explain.

The benchmarks deserve a careful reading. On LOCOMO, graphify dominates recall (0.497 versus 0.149 and 0.048) but loses on QA accuracy (45.3% versus 49.7%); on LongMemEval-S it ties a dense RAG at 76%. The line that matters lies elsewhere: « Graph build — LLM credits: 0 ». The defensible differentiator is cost and traceability, not answer quality.

⚠️ Three caveats. The main branch carries a stale v1-era README describing a different product: read v8. The PyPI package is named graphifyy, until the name is reclaimed. And a local query log is active by default, disabled via an environment variable.

The skill also serves as an entry point to a waitlisted commercial platform at graphify.com, which applies the same approach continuously to the entire working context.