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 design choices underpin the project. Code is parsed locally into a tree-sitter AST, without an LLM: deterministic, nothing leaves the machine, no API key required for a code-only 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."

Usage replaces grep. query returns a subgraph for a natural-language question, path A B traces the path between two entities, explain unfolds 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, PDF, images, and video transcribed locally. # WHY: comments and design rationale become first-class nodes linked to the code they explain.

The benchmarks call for 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 matches a dense RAG at 76%. The line that matters is elsewhere: "Graph build — LLM credits: 0". The defensible differentiator is cost and traceability, not answer quality.

Three caveats. The main branch carries an outdated v1-era README describing a different product: read v8. The PyPI package is named graphifyy, while the name is being reclaimed. And a local query log is active by default, which can be disabled via an environment variable.

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