From aai-core
Conducts comprehensive GitHub pull request reviews checking security, correctness, performance, maintainability, tests, and architecture. Use /pr-review for current or specific PRs.
How this skill is triggered — by the user, by Claude, or both
Slash command
/aai-core:pr-reviewThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Conducts comprehensive code review of a pull request using the `git-pr-reviewer` agent.
Conducts comprehensive code review of a pull request using the git-pr-reviewer agent.
If user provided PR number/URL:
gh pr view <number> --json title,body,author,files
If no argument provided:
# Find PR for current branch
gh pr list --head $(git branch --show-current)
If no PR found: Error and suggest using /push first.
Use the Task tool to launch git-pr-reviewer agent with the PR number.
Fetch PR details and diff:
gh pr view <number> --json title,body,author,files,additions,deletions
gh pr diff <number>
Analyze changes for:
Generate structured review:
Post review to GitHub (with permission).
Provide:
/pr-review # Review PR for current branch
/pr-review 123 # Review specific PR number
/pr-review #456 # Review specific PR
npx claudepluginhub bradtaylorsf/alphaagent-teamGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.