Help us improve
Share bugs, ideas, or general feedback.
From github
Uses GitHub CLI (gh) for viewing repos, PRs, issues, workflow runs, job logs, and API calls. Useful for GitHub repo, PR, issue, and Actions management.
npx claudepluginhub bendrucker/claude --plugin githubHow this skill is triggered — by the user, by Claude, or both
Slash command
/github:ghThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use `gh` for all GitHub interactions. It handles authentication automatically and works with private repositories.
Guides usage of gh CLI for common GitHub operations: PRs, issues, CI checks, logs, and repo metadata.
Uses the gh CLI to manage GitHub issues, pull requests, view Actions workflow runs, and query the GitHub API. Helps debug CI failures and inspect PR status.
Guides technical evaluation of code review feedback: read fully, restate for understanding, verify against codebase, respond with reasoning or pushback before implementing.
Share bugs, ideas, or general feedback.
Use 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.