From gh-dash
Displays GitHub PR dashboard in terminal with status, CI/CD progress bars, bot comments, file changes, and merge options including squash/rebase.
How this skill is triggered — by the user, by Claude, or both
Slash command
/gh-dash:gh-dashThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
!`git rev-parse --abbrev-ref HEAD 2>/dev/null || echo 'Not in a git repo'`
!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 reference5plugins reuse this skill
First indexed Jul 10, 2026
npx claudepluginhub fleet-to-force/claude-code-plugins-plus --plugin gh-dashTerminal-based GitHub PR dashboard showing CI/CD progress, bot comments, file changes, and one-command merges.
Queries GitHub PRs, issues, workflow runs, and repo metadata via `gh` CLI with JSON output. Use for inspecting PR checks, fetching failed CI logs, or resolving github.com URLs to API calls.
Provides gh CLI patterns for PR creation, stacked PRs, squash/rebase merging, branching, and repository automation. Use when managing GitHub PRs or merging strategies.