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 referencenpx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin gh-dashAutomatically polls and shepherds open PRs/MRs: triages review comments, fixes CI failures, pushes autofix commits, and keeps pull requests moving without manual intervention. Supports GitHub and GitLab.
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.