GitHub Ops (github-ops)
Teaches Claude the gh CLI and GitHub API patterns needed to manage PRs, issues, and Actions for you.
Dev & CodingIntermediate★ 1,323⑂ 212AI score 8/10Last updated: Aug 8, 2026
What it does
Gives Claude a curated playbook of gh CLI commands plus GitHub REST/GraphQL API usage so you can drive GitHub in plain language.
- Pull requests: create, view, review/approve, comment, check CI status, squash merge
- Issues: create, label and assign, advanced filtering, bulk updates, close
- Actions: list and trigger workflows, watch runs, download artifacts
- API: direct REST calls via
gh api, GraphQL for multi-resource queries - Output control:
--json,--templateand jq patterns for scripting - Deep detail lives in five
references/docs (PR, issue, workflow, API, best practices) loaded only on demand.
Who it's for
- Developers who live in PRs and issues and want fewer browser round trips
- Anyone who wants to debug failing CI straight from the terminal
- Teams automating repetitive housekeeping across many repositories
- Engineers on GitHub Enterprise needing custom host authentication
Examples
- "Open a PR from my current branch and summarize the diff in the body" → runs
gh pr createwith generated title and description - "Show me open PRs whose checks are failing" →
gh pr list --jsonpiped through jq for filtering - "Label bug issues untouched for 30+ days as stale" → API query followed by batched
gh issue editcalls
· · · Install guide · · ·
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the github-ops folder from the GitHub repo daymade/claude-code-skills into my ~/.claude/skills/github-ops/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/daymade/claude-code-skills.git /tmp/ccs && mkdir -p ~/.claude/skills && cp -r /tmp/ccs/github-ops ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Install GitHub CLI: macOS
brew install gh, Ubuntusudo apt install gh, Windowswinget install GitHub.cli. - Authenticate: run
gh auth loginand follow the prompts. For enterprise:gh auth login --hostname github.yourcompany.com. - Create the skills folder:
mkdir -p ~/.claude/skills - Clone the repo:
git clone https://github.com/daymade/claude-code-skills.git /tmp/ccs - Copy the skill:
cp -r /tmp/ccs/github-ops ~/.claude/skills/ - Verify: restart Claude Code and ask "list the open PRs in this repo" to confirm the skill triggers.
- Optional: the
NOJIRA:/GR-1234:PR title convention is org-specific — edit~/.claude/skills/github-ops/SKILL.mdto match your team's rules.
View source on GitHub ↗License: MIT