review-pr
Review PR
Perform a comprehensive code review of a pull request or branch diff using the knowledge graph.
Token optimization: Before starting, call get_docs_section_tool(section_name="review-pr") for the optimized workflow. Never include full files unless explicitly asked.
Steps
-
Identify the changes for the PR:
- If a PR number or branch is provided, use
git diff main...<branch>to get changed files - Otherwise auto-detect from the current branch vs main/master
- If a PR number or branch is provided, use
-
Update the graph by calling
build_or_update_graph_tool(base="main")to ensure the graph reflects the current state. -
Get the full review context by calling
get_review_context_tool(base="main"):- This uses
main(or the specified base branch) as the diff base - Returns all changed files across all commits in the PR
- This uses
More from 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.
351review-delta
Review only changes since last commit using impact analysis. Token-efficient delta review with automatic blast-radius detection.
325explore codebase
Navigate and understand codebase structure using the knowledge graph
259review changes
Perform a structured code review using change detection and impact
251refactor safely
Plan and execute safe refactoring using dependency analysis
249debug issue
Systematically debug issues using graph-powered code navigation
245