review-pr
SolidComprehensive PR review -- full branch diff against base, commit-by-commit analysis, breaking change detection, conventional commit verification.
Code & Development 53 stars
9 forks Updated 2 days ago MIT
Install
Quality Score: 88/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Review PR
Comprehensive code review of a pull request or branch diff against its base. Unlike review-delta (quick review of uncommitted local changes), this reviews ALL commits in a branch for PR submission readiness.
**Token optimization:** Before starting, call `help(topic="graph")` for the full actions reference. Never include full files unless explicitly asked.
## Steps
1. **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
2. **Update the graph** by calling `graph(action="build", base="main")` to ensure the graph reflects the current state.
3. **Commit-by-commit analysis** (for PRs with >3 commits):
- `git log --oneline main..HEAD` to list all commits
- Group related commits by area (feature, fix, refactor, test, docs)
- Verify each commit message follows Conventional Commits (`type(scope): description`)
- Flag commits that mix unrelated changes
4. **Get the full review context** by calling `review(base="main")`:
- Returns all changed files across all commits in the PR
- Includes impacted nodes and blast radius
5. **Analyze impact** by calling `query(action="impact", base="main")`:
- Review the blast radius across the entire PR
- Identify high-risk areas (widely depended-upon code)
6. **Breaking change detection** for public APIs:
- Identify exported/public functions, classes, types that ch...
Details
- Author
- n24q02m
- Repository
- n24q02m/better-code-review-graph
- Created
- 2 months ago
- Last Updated
- 2 days ago
- Language
- Python
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
Code & Development Listed
review-pr
Comprehensive PR review -- full branch diff against base, commit-by-commit analysis, breaking change detection, conventional commit verification.
3 Updated 2 days ago
n24q02m Code & Development Solid
review-pr
Review a PR or branch diff using the knowledge graph for full structural context. Outputs a structured review with blast-radius analysis.
18,418 Updated yesterday
tirth8205 Code & Development Listed
pr-review
Review a GitHub PR by analyzing the branch diff against the linked issue requirements, launch parallel analysis agents (context + security), then post structured findings as PR comments.
4 Updated today
open-ace