tirth8205/code-review-graph

build-graph

Build or update the code review knowledge graph. Run this first to initialize, or let hooks keep it updated automatically.

All-time #8825 First seen Mar 17, 2026
8-week activity · all time api

Installation

$ npx skills add tirth8205/code-review-graph --skill build-graph

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from tirth8205/code-review-graph.

npx skills add tirth8205/code-review-graph

Browse all from tirth8205/code-review-graph

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 31.3K
License LICENSE
Default branch main
Open issues 88
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,513 B
  • docs SUMMARY.md 141 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1,200 installs

SKILL.md

Build Graph

Build or incrementally update the persistent code knowledge graph for this repository.

Steps

  1. Check graph status by calling the listgraphstats_tool MCP tool.

- If the graph has never been built (last_updated is null), proceed with a full build. - If the graph exists, proceed with an incremental update.

  1. Build the graph by calling the buildorupdategraphtool MCP tool:

- For first-time setup: buildorupdategraphtool(fullrebuild=True) - For updates: buildorupdategraph_tool() (incremental by default)

  1. Verify by calling listgraphstats_tool again and report the results:

- Number of files parsed - Number of nodes and edges created - Languages detected - Any errors encountered

When to Use

  • First time setting up the graph for a repository
  • After major refactoring or branch switches
  • If the graph seems stale or out of sync
  • The graph auto-updates via hooks on edit/commit, so manual builds are rarely needed

Notes

  • The graph is stored as a SQLite database (.code-review-graph/graph.db) in the repo root
  • Binary files, generated files, and patterns in .code-review-graphignore are skipped
  • Supported languages: Python, TypeScript/JavaScript, Vue, Go, Rust, Java, Scala, C#, Ruby, Kotlin, Swift, PHP, Solidity, C/C++