From claudette
Reviews PRs or branch diffs using knowledge graph for structural context, blast-radius analysis, risk assessment, test coverage, and structured file-by-file output.
npx claudepluginhub nicmarti/claudetteThis skill uses the workspace's default tool permissions.
Perform a comprehensive code review of a pull request or branch diff using the knowledge graph.
Reviews only code changes since last commit using graph-based impact analysis and blast radius detection. Provides token-efficient context for focused reviews of bugs, style, tests, and affected files/functions.
Reviews pull requests by analyzing diffs with GitNexus: detects affected flows/symbols, computes blast radius, checks test coverage, and assesses merge risk.
Reviews GitHub pull requests using gh CLI, analyzing diffs for code quality, security, testing, best practices, and providing structured feedback.
Share bugs, ideas, or general feedback.
Perform a comprehensive code review of a pull request or branch diff using the knowledge graph.
Token optimization: Before starting, call get_docs_section(section_name="review-pr") for the optimized workflow. Never include full files unless explicitly asked.
Identify the changes for the PR:
git diff main...<branch> to get changed filesUpdate the graph by calling build_or_update_graph(base="main").
Get the full review context by calling get_review_context(base="main").
Analyze impact by calling get_impact_radius(base="main").
Deep-dive each changed file:
query_graph(pattern="callers_of", target=<func>) for high-risk functionsquery_graph(pattern="tests_for", target=<func>) to verify test coverageGenerate structured review output:
## PR Review: <title>
### Summary
<1-3 sentence overview>
### Risk Assessment
- **Overall risk**: Low / Medium / High
- **Blast radius**: X files, Y functions impacted
- **Test coverage**: N changed functions covered / M total
### File-by-File Review
#### <file_path>
- Changes: <description>
- Impact: <who depends on this>
- Issues: <bugs, style, concerns>
### Recommendations
1. <actionable suggestion>