npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin gh-dashThis skill is limited to using the following tools:
!`git rev-parse --abbrev-ref HEAD 2>/dev/null || echo 'Not in a git repo'`
Executes GitHub CLI (gh) commands for PR status/checks/merges, issue listing/creation/viewing, repo viewing, and more. Requires gh installed/authenticated in GitHub repos.
Executes GitHub operations (PRs, issues, milestones, labels, comments, merges) using Python scripts with structured output and error handling. Use for pull requests, issues, review comments, CI checks, milestones instead of raw gh.
Executes GitHub operations on PRs, issues, milestones, labels, comments, and merges using Python scripts with structured output and error handling. Use for pull requests, issues, review comments, CI checks, or milestones instead of raw gh.
Share bugs, ideas, or general feedback.
!git rev-parse --abbrev-ref HEAD 2>/dev/null || echo 'Not in a git repo'
!gh auth status 2>&1 | head -1
GitHub pull request dashboard for Claude Code with CI/CD monitoring and merge capabilities.
This skill brings a complete GitHub pull request dashboard into your terminal workflow. Instead of switching to a browser to check PR status, review CI results, or merge branches, gh-dash consolidates all PR information into a single view. It displays real-time CI/CD progress with a visual progress bar, detects and summarizes bot comments (CodeRabbit, Cursor Bugbot, Coverage reporters), shows files changed with line-level statistics, and provides one-command merge operations with support for squash, merge commit, and rebase strategies.
The skill relies on the GitHub CLI (gh) for all API interactions, so it works with any GitHub repository where you have appropriate permissions. It respects branch protection rules, required reviews, and status checks, surfacing any blockers clearly before allowing merge operations.
View PR status for the current branch:
gh pr view and gh pr checks to gather PR metadata, review status, and CI resultsCheck CI/CD progress:
Review bot comments:
Merge the PR:
squash (default), merge, rebaseView file changes:
The skill produces formatted terminal output covering:
User: "What's the status of my PR?"
The skill will:
gh pr view --json title,state,reviews,statusCheckRollup,additions,deletions,changedFiles to gather data.User: "Merge this PR with squash."
The skill will:
gh pr checks.gh pr merge --squash --delete-branch to squash-merge and clean up the branch.User: "Summarize the bot comments on this PR."
The skill will:
gh api repos/{owner}/{repo}/pulls/{number}/comments.gh) must be installed and authenticated (gh auth status to verify).gh pr create or checking out the correct branch.gh command and provides installation instructions for the current platform.gh command reference