How does this differ with graphify? #611
Replies: 2 comments
-
|
Hey, good question. The overlap is real: both tools try to give coding agents a graph-shaped view of a project instead of relying only on grep/read loops. The most direct comparison I have seen so far is the open community benchmark PR here: #628. It is still an open PR, so I would treat it as community-supplied evidence rather than an official project claim, but the results are useful. In that benchmark, run on this repo's C core, both tools were very strong at finding function definitions: Graphify reported
So my short take would be: Graphify is broader: code, docs, PDFs, images, videos, visual graph/report output, and a general project knowledge graph workflow. CBM is narrower and more code-specialized: local MCP server, structural code search, exact snippets, call tracing, impact analysis, architecture queries, and low-latency graph operations for coding agents. One important distinction is product direction: CBM is built primarily for coding agents, not for humans browsing a graph. The graph quality is the product surface. We are actively working on improving that graph, especially through more and better Hybrid LSP layers, because better symbol resolution, call edges, type information, and cross-file relationships directly improve agentic coding performance. The goal is to give the agent the most accurate, low-latency structural context possible so it can work with fewer tokens, fewer wrong turns, and better code-change decisions. If your corpus is mixed docs/media plus code, Graphify may be attractive. If your main use case is code-only agent navigation and structural code questions, the direct comparison data I have seen points toward CBM. CBM's direction is deliberately agent-first: the coding agent is the primary user, and better graph context is the lever for better agent efficiency. |
Beta Was this translation helpful? Give feedback.
-
|
Thanks for the detailed answer! |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
https://github.com/safishamsi/graphify - this
Seems very similar, but I can't decide which is better for me :)
Beta Was this translation helpful? Give feedback.
All reactions