github

Installation
Summary

GitHub workflow automation via gh CLI for pull requests, stacked PRs, and repository management.

  • Provides stacked PR merge workflow: squash-merge the first PR, then rebase and update base branch for each subsequent PR in the chain
  • Includes conflict detection and manual resolution prompts to prevent silent failures during multi-PR merges
  • Covers core gh CLI operations: PR creation, status checks, squash/rebase merging, and branch management
  • Optimized for low context usage by relying on gh CLI instead of GitHub MCP servers
SKILL.md

GitHub Patterns

Tools

Use gh CLI for all GitHub operations. Prefer CLI over GitHub MCP servers for lower context usage.

Quick Commands

# Create a PR from the current branch
gh pr create --title "feat: add feature" --body "Description"

# Squash-merge a PR
gh pr merge <PR_NUMBER> --squash --title "feat: add feature (#<PR_NUMBER>)"

# View PR status and checks
gh pr status
gh pr checks <PR_NUMBER>
Related skills
Installs
3.7K
GitHub Stars
1.3K
First Seen
Jan 26, 2026