From gh-dash
Provides a GitHub pull request dashboard directly in the terminal. Use when the user wants to view PR status, check CI/CD progress, review bot comments, or merge pull requests without leaving Claude Code. Trigger with phrases like "show PR dashboard", "PR status", "check CI progress", "merge this PR", or "review pull request".
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 referenceProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
npx claudepluginhub flight505/skill-forge --plugin gh-dash