What problem does it solve? Reviewing pull requests thoroughly is time-consuming and inconsistent: reviewers miss CI failures, skip commit history, give vague feedback, or rubber-stamp large diffs. This Skill provides a structured, repeatable procedure for conducting complete PR reviews with the GitHub CLI. ## Core Features & Use Cases - Context and Scope Assessment: Fetches PR metadata, commit history, and CI check status via gh pr view and gh pr checks, then sizes the review effort based on files and lines changed. - Systematic Diff Analysis: Walks through gh pr diff output evaluating correctness, edge cases, error handling, security, performance, readability, and test coverage. - Severity-Leveled Feedback: Classifies every comment as Blocking, Suggestion, Nit, or Praise, then submits a formal review with gh pr review --approve, --request-changes, or --comment. - Use Case: A reviewer assigned a 20-file PR runs the workflow to inspect commits one by one, flags a null-pointer risk as Blocking with a suggested code fix, and submits a request-changes review with precise file and line references. ## Quick Start Ask the AI to review pull request number 42 in the current repository, checking CI status and classifying all findings by severity before submitting the review.