Stats
Actions
Tags
How this skill is triggered — by the user, by Claude, or both
Slash command
/pr-review:review-prThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
name: review-pr
Run a comprehensive review of the current PR using the pr-review-toolkit:review-pr skill as the execution engine.
gh pr diff --name-only — this is GitHub's view of the PR and the source of truth. It correctly handles rebases and merge commits.git diff --name-only $(git merge-base main HEAD)..HEAD — use the merge-base to avoid including unrelated commits from main.git diff --name-only main...HEAD — the three-dot diff can include files from main that were merged into the branch, inflating the changeset.uv.lock and *.md files. These do not count when deciding whether the PR is small, medium, or large, and should not be flagged for review unless they contain an actual defect.api/, migrations/, tests/), config files (pyproject.toml, Makefile, Dockerfile, docker-compose.yml, alembic.ini, .env.example). Ignore generated or lock files.gh pr diff over git diff for the same reasons. Only the actual PR diff should be reviewed.CLAUDE.md, not generic best practices that conflict with this project's choices.Invoke the pr-review-toolkit:review-pr skill with all applicable review aspects, passing the scoping context above. The skill handles agent orchestration, parallelism, and result aggregation.
npx claudepluginhub himmelreich-it/agentic-development --plugin pr-reviewGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.