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".
Best use case
gh-dash is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
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".
Teams using gh-dash should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/gh-dash/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How gh-dash Compares
| Feature / Agent | gh-dash | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
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".
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
AI Agents for Coding
Browse AI agent skills for coding, debugging, testing, refactoring, code review, and developer workflows across Claude, Cursor, and Codex.
Best AI Skills for Claude
Explore the best AI skills for Claude and Claude Code across coding, research, workflow automation, documentation, and agent operations.
ChatGPT vs Claude for Agent Skills
Compare ChatGPT and Claude for AI agent skills across coding, writing, research, and reusable workflow execution.
SKILL.md Source
# gh-dash
## Current State
!`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.
## Overview
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.
## Instructions
1. **View PR status** for the current branch:
- Navigate to the repository directory
- Ask: "Show me the PR dashboard" or "What's the status of my PR?"
- The skill runs `gh pr view` and `gh pr checks` to gather PR metadata, review status, and CI results
2. **Check CI/CD progress:**
- Ask: "How are the CI checks doing?" or "Is CI passing?"
- The skill displays each check with its status (pass, fail, pending), elapsed time, and a visual progress indicator
- Failed checks include the failure reason and a link to the full log
3. **Review bot comments:**
- Ask: "What did the bots say?" or "Show code review comments"
- The skill filters PR comments to identify automated reviewers (CodeRabbit, Dependabot, coverage bots) and summarizes their findings separately from human reviews
4. **Merge the PR:**
- Ask: "Merge this PR" or "Squash merge"
- Supported strategies: `squash` (default), `merge`, `rebase`
- The skill checks for required reviews, passing CI, and branch protection before attempting the merge
- After merging, it optionally deletes the remote branch and checks out the default branch
5. **View file changes:**
- Ask: "What files changed in this PR?"
- Displays a summary of files added, modified, and deleted with line counts
## Output
The skill produces formatted terminal output covering:
- **PR Summary**: Title, description, author, branch, labels, reviewers, and age of the PR.
- **CI/CD Status Table**: Each workflow check listed with status icon, check name, elapsed time, and conclusion. A progress bar shows overall completion percentage.
- **Bot Comment Summary**: Grouped by bot type, showing the number of comments, key findings (e.g., "CodeRabbit found 3 suggestions"), and links to individual comments.
- **Files Changed**: Table of modified files with insertions/deletions counts and file type indicators.
- **Merge Result**: Confirmation of merge strategy used, resulting commit SHA, and branch cleanup status.
## Examples
### Example 1: Quick PR Status Check
**User:** "What's the status of my PR?"
The skill will:
1. Run `gh pr view --json title,state,reviews,statusCheckRollup,additions,deletions,changedFiles` to gather data.
2. Display a formatted summary showing the PR title, review approvals, and CI status.
3. Highlight any blockers: failing checks, requested changes, or missing required reviews.
### Example 2: Merge After CI Passes
**User:** "Merge this PR with squash."
The skill will:
1. Verify all required status checks are passing with `gh pr checks`.
2. Confirm the PR has sufficient approvals.
3. Execute `gh pr merge --squash --delete-branch` to squash-merge and clean up the branch.
4. Report the merge commit SHA and confirm the remote branch was deleted.
### Example 3: Review Bot Feedback
**User:** "Summarize the bot comments on this PR."
The skill will:
1. Fetch all PR comments with `gh api repos/{owner}/{repo}/pulls/{number}/comments`.
2. Identify automated comments by known bot usernames and patterns.
3. Group findings by bot: CodeRabbit suggestions, coverage report deltas, security scan results.
4. Present a concise summary with links to the full comments for follow-up.
## Prerequisites
- **GitHub CLI (`gh`)** must be installed and authenticated (`gh auth status` to verify).
- The current directory must be inside a git repository with a GitHub remote.
- Appropriate permissions for the operations requested (write access for merging).
## Error Handling
- **No PR found for current branch:** Suggests creating a PR with `gh pr create` or checking out the correct branch.
- **CI checks still running:** Reports which checks are pending and offers to wait or proceed.
- **Merge blocked:** Clearly states the blocking reason (failed checks, missing reviews, branch protection) and suggests remediation steps.
- **GitHub CLI not installed:** Detects missing `gh` command and provides installation instructions for the current platform.
## Resources
- [GitHub CLI manual](https://cli.github.com/manual/) — official `gh` command reference
- [GitHub REST API docs](https://docs.github.com/en/rest) — underlying API for PR data and checks
- [GitHub pull request documentation](https://docs.github.com/en/pull-requests) — PR workflows, reviews, and merge strategiesRelated Skills
creating-apm-dashboards
Execute this skill enables AI assistant to create application performance monitoring (apm) dashboards. it is triggered when the user requests the creation of a new apm dashboard, monitoring dashboard, or a dashboard for application performance. the skill helps ... Use when generating or creating new content. Trigger with phrases like 'generate', 'create', or 'scaffold'.
kpi-dashboard-template
Kpi Dashboard Template - Auto-activating skill for Enterprise Workflows. Triggers on: kpi dashboard template, kpi dashboard template Part of the Enterprise Workflows skill category.
dashboard-layout-planner
Dashboard Layout Planner - Auto-activating skill for Data Analytics. Triggers on: dashboard layout planner, dashboard layout planner Part of the Data Analytics skill category.
grafana-dashboard-creator
Grafana Dashboard Creator - Auto-activating skill for DevOps Advanced. Triggers on: grafana dashboard creator, grafana dashboard creator Part of the DevOps Advanced skill category.
schema-optimization-orchestrator
Multi-phase schema optimization workflow orchestrator. Creates session directories, spawns phase agents sequentially, validates outputs, aggregates results. Trigger: "run schema optimization", "optimize schema workflow", "execute schema phases"
test-skill
Test skill for E2E validation. Trigger with "run test skill" or "execute test". Use this skill when testing skill activation and tool permissions.
example-skill
Brief description of what this skill does and when the model should activate it. Use when [describe the user's intent or situation]. Trigger with "example phrase", "another trigger", "/example-skill".
testing-visual-regression
Detect visual changes in UI components using screenshot comparison. Use when detecting unintended UI changes or pixel differences. Trigger with phrases like "test visual changes", "compare screenshots", or "detect UI regressions".
generating-unit-tests
Test automatically generate comprehensive unit tests from source code covering happy paths, edge cases, and error conditions. Use when creating test coverage for functions, classes, or modules. Trigger with phrases like "generate unit tests", "create tests for", or "add test coverage".
generating-test-reports
Generate comprehensive test reports with metrics, coverage, and visualizations. Use when performing specialized testing. Trigger with phrases like "generate test report", "create test documentation", or "show test metrics".
orchestrating-test-execution
Test coordinate parallel test execution across multiple environments and frameworks. Use when performing specialized testing. Trigger with phrases like "orchestrate tests", "run parallel tests", or "coordinate test execution".
managing-test-environments
Test provision and manage isolated test environments with configuration and data. Use when performing specialized testing. Trigger with phrases like "manage test environment", "provision test env", or "setup test infrastructure".