Claude Code Plugins

Community-maintained marketplace

Feedback

GitHub CLI patterns for PR review and repository context gathering. Use when reviewing pull requests, checking CI status, analyzing commits, or gathering GitHub context. Provides gh command patterns for PRs, issues, reviews, and diffs.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name github-cli
description GitHub CLI patterns for PR review and repository context gathering. Use when reviewing pull requests, checking CI status, analyzing commits, or gathering GitHub context. Provides gh command patterns for PRs, issues, reviews, and diffs.

GitHub CLI for PR Review

Use these patterns when working with GitHub pull requests and repositories.

Essential Commands

gh pr view <number>              # PR overview
gh pr diff <number>              # File changes
gh pr view <number> --comments   # Discussions
gh pr checks <number>            # CI status

Review Workflow

  1. gh pr view <number> - Get overview
  2. gh pr diff <number> - See changes
  3. gh pr view <number> --comments - Read discussions
  4. gh pr checks <number> - Verify CI

See reference.md for complete command reference and workflows.