GitHub CLI usage and workflow patterns. Use when working with GitHub repositories, pull requests, issues, or API interactions.
Manages GitHub repositories, issues, pull requests, and API interactions via CLI.
npx claudepluginhub bendrucker/claudeThis skill inherits all available tools. When active, it can use any tool Claude has access to.
reviews.mdUse gh for all GitHub interactions. It handles authentication automatically and works with private repositories.
gh repo view — view repository README and metadatagh issue view <number> — view issue detailsgh pr view <number> — view pull request detailsgh run view <run_id> — view workflow run statusgh run view --job <job_id> --log — view job logsUse gh api for operations not covered by built-in commands:
gh api repos/{owner}/{repo}/contents/{path} # fetch file contents
gh api repos/{owner}/{repo}/pulls/{number}/comments # PR review comments
git push a branch before creating a pull request with gh pr create.You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.