neuralmind.uk / NeuralMind vs. graphify — code-context retrieval or a general knowledge-graph engine with a code-review layer? Edit this page on GitHub ↗

NeuralMind vs. graphify

TL;DR — graphify started as a general “turn any corpus into a knowledge graph” tool and NeuralMind’s built-in backend was designed to read its graph.json output as an optional richer alternative to our own tree-sitter graph. As of August 2026 that relationship is one-sided: graphify (now built by Graphify-Labs, a YC S26 company) has grown into a large, actively-shipped project with its own enterprise tier — merge-gate verification, graph-aware code review, engineering digest, self-hosted deployment — that overlaps NeuralMind’s positioning directly, and its own docs no longer reference NeuralMind. We still treat it as interoperable at the file-format level (a graphify-produced graph.json is read automatically when present), but it is a competitor for the AI-coding-agent context/governance niche, not merely an optional backend. Assessed August 2026 — Graphify-Labs ships daily; re-check before relying on specifics.

What graphify is

graphify (Apache 2.0, pip install graphifyy) turns a corpus — code, docs, papers, images, video — into a knowledge graph with community detection, an audit trail (EXTRACTED / INFERRED / AMBIGUOUS edge tagging), and exports to Obsidian, Neo4j, GraphML, and SVG. Its extraction pipeline combines a free, deterministic AST pass for code with an LLM-driven semantic pass for everything else (and for code relationships an AST pass alone can’t see), which is what gives it broader-than-code reach that NeuralMind doesn’t attempt.

Originally a solo project (github.com/safishamsi/graphify), it now lives under the Graphify-Labs GitHub organization — a Y Combinator S26 company pitching “on-device knowledge graph engine for enterprises.” The OSS core stayed free and relicensed from MIT to Apache 2.0. graphify.com lists a paid Enterprise (Early Access) tier — no public price — adding merge-gate verification, graph-aware code review, an engineering digest, and self-hosted deployment. As of this writing it reports 100K+ GitHub stars and a daily release cadence (v0.9.44 → v0.9.48 in less than a week); we flag the star count as large enough to warrant skepticism about organic growth rather than treat it as settled fact, while the fork count (10K+, harder to inflate) still points to real adoption.

How NeuralMind differs

The two tools now answer overlapping but distinct questions:

NeuralMind’s scope is deliberately narrower — code only, retrieval and compression only — in exchange for things graphify’s general-purpose design doesn’t do: a learned Hebbian synapse layer that strengthens associations from actual usage (not just extraction-time inference), PostToolUse hooks that compress Read/Bash/Grep output in-session, and git-portable team memory that any MCP-compatible agent can read, not just the ones graphify’s own CLI targets.

Dimension graphify NeuralMind
Corpus scope Code, docs, papers, images, video — anything Code only
Extraction AST (free) + LLM semantic pass (costs tokens, requires a model) Tree-sitter, deterministic, no LLM required to build the index
Edge provenance EXTRACTED / INFERRED / AMBIGUOUS audit trail Not tracked the same way — retrieval scores, not edge-confidence tags
Learned/usage-based memory No — graph reflects extraction time, not usage Yes — Hebbian synapse layer strengthens from real query/edit activity, with decay
Cross-session team memory No Yes — git-portable .neuralmind-team-memory.json, importable by any teammate’s agent
Tool-output compression No Yes — PostToolUse hooks (Read/Bash/Grep)
Agent integration Own CLI/MCP server, exports to Obsidian/Neo4j/etc. MCP server + Claude Code hooks; any MCP-compatible agent
Paid tier Enterprise (Early Access) — merge-gate verification, graph-aware review, engineering digest, self-hosted; no public price Team ($29/user/mo) — seats beyond one, priority support, annual invoice; every feature runs free at 1 seat
Backing Y Combinator (S26), organizational Bootstrapped, solo maintainer
License Apache 2.0 MIT (core); source-available commercial modules for the Team tier

When to pick which

Pick graphify if:

Pick NeuralMind if:

They’re still interoperable at the file level — a graphify-produced graph.json is read automatically by NeuralMind’s built-in backend when present and takes priority over ours. That plumbing predates graphify’s pivot and, as far as we’ve verified, still works; it just no longer implies any relationship on graphify’s side, and their own docs make no mention of NeuralMind.

The honest caveats

See also