chore: add a committed Graphify knowledge graph of the codebase - #21
Conversation
|
Warning Review limit reached
Next review available in: 19 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (5)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Builds a persistent, queryable knowledge graph of the codebase and commits it, so architecture and relationship questions can be answered from a compact map instead of re-reading files. Most useful during the upcoming provider migration, where "what still depends on Supabase" is a question that gets asked repeatedly.
What's committed
graphify-out/graph.json— the queryable graph (1630 nodes, 3624 edges, 128 communities)graphify-out/GRAPH_REPORT.md— human-readable report.gitignore— keeps the churny, regenerable artifacts local (graph.htmlat 1.5 MB,cost.json,manifest.json,cache/)Cost
Zero. Built with
graphify extract . --code-only(AST only) plusgraphify cluster-only . --no-label, so community detection runs without LLM naming — 0 input / 0 output tokens, no API key used.Scope
A local
.graphifyignorerestricts extraction to code: 312 files, 0 documents/images. Non-code files that would otherwise trigger per-file semantic extraction are excluded, as are all image directories.Refresh
graphify update .after notable code changes — no LLM, free. Note graphify refuses to write agraph.jsonsmaller than the existing one; any change that deletes a meaningful slice of source (such as the planned Supabase removal) will trip that guard and needs--force.Sample queries, verified
backend/src/services/solarApiService.tsbackend/src/services/fluxRecomputeService.tsconfig/supabase.ts,middleware/auth.ts,userService.ts,storageService.ts,env.tsCloses #19