KS
Killer-Skills

github — github automation github automation, gh cli commands, github pull request management, github vs gitlab, how to use github, github setup guide, github repository management, github alternative, github install

Verified
v1.0.0
GitHub

About this Skill

Ideal for Development Agents leveraging GitHub for version control and collaboration, particularly those utilizing gh CLI for streamlined repository management. github is a version control system utilizing gh CLI for efficient repository management and automation

Features

Creates pull requests using `gh pr create` command
Supports squash-merging PRs with `gh pr merge`
Enables PR status and checks with `gh pr status` and `gh pr checks`
Facilitates stacked PR workflow management
Utilizes gh CLI for lower context usage over GitHub MCP servers

# Core Topics

callstackincubator callstackincubator
[969]
[57]
Updated: 3/6/2026

Quality Score

Top 5%
76
Excellent
Based on code quality & docs
Installation
SYS Universal Install (Auto-Detect)
Cursor IDE Windsurf IDE VS Code IDE
> npx killer-skills add callstackincubator/agent-skills/github

Agent Capability Analysis

The github MCP Server by callstackincubator is an open-source Categories.official integration for Claude and other AI agents, enabling seamless task automation and capability expansion. Optimized for github automation, gh cli commands, github pull request management.

Ideal Agent Persona

Ideal for Development Agents leveraging GitHub for version control and collaboration, particularly those utilizing gh CLI for streamlined repository management.

Core Value

Empowers agents to automate GitHub workflows, including creating and managing pull requests, implementing branching strategies, and performing code reviews using the gh CLI, facilitating efficient repository automation and streamlined development processes.

Capabilities Granted for github MCP Server

Automating pull request creation and merging using gh pr create and gh pr merge
Streamlining code review processes with gh pr checks and gh pr status
Implementing efficient branching strategies for collaborative development projects

! Prerequisites & Limits

  • Requires gh CLI installation and configuration
  • Limited to GitHub repositories and ecosystems
Project
SKILL.md
1.4 KB
.cursorrules
1.2 KB
package.json
240 B
Ready
UTF-8

# Tags

[No tags]
SKILL.md
Readonly

GitHub Patterns

Tools

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

Quick Commands

bash
1# Create a PR from the current branch 2gh pr create --title "feat: add feature" --body "Description" 3 4# Squash-merge a PR 5gh pr merge <PR_NUMBER> --squash --title "feat: add feature (#<PR_NUMBER>)" 6 7# View PR status and checks 8gh pr status 9gh pr checks <PR_NUMBER>

Stacked PR Workflow Summary

When merging a chain of stacked PRs (each targeting the previous branch):

  1. Merge the first PR into main via squash merge
  2. For each subsequent PR: rebase onto main, update base to main, then squash merge
  3. On conflicts: stop and ask the user to resolve manually
bash
1# Rebase next PR's branch onto main, excluding already-merged commits 2git rebase --onto origin/main <old-base-branch> <next-branch> 3git push --force-with-lease origin <next-branch> 4gh pr edit <N> --base main 5gh pr merge <N> --squash --title "<PR title> (#N)"

See stacked-pr-workflow.md for full step-by-step details.

Quick Reference

FileDescription
stacked-pr-workflow.mdMerge stacked PRs into main as individual squash commits

Problem -> Skill Mapping

ProblemStart With
Merge stacked PRs cleanlystacked-pr-workflow.md

Related Skills

Looking for an alternative to github or building a Categories.official AI Agent? Explore these related open-source MCP Servers.

View All

flags

Logo of facebook
facebook

flags is a feature flag management system that enables developers to check flag states, compare channels, and debug feature behavior differences across release channels.

243.6k
0
Design

extract-errors

Logo of facebook
facebook

extract-errors is a skill that assists in extracting and managing error codes in React applications using yarn extract-errors command.

243.6k
0
Design

fix

Logo of facebook
facebook

fix is a technical skill that resolves lint errors, formatting issues, and ensures code quality in declarative, frontend, and UI projects

243.6k
0
Design

flow

Logo of facebook
facebook

Flow is a type checking system for JavaScript, used to validate React code and ensure consistency across applications

243.6k
0
Design