Claude Skill MartBrowse skillsWhat is a Skill?
Back to list

GitHub Ops (github-ops)

Teaches Claude the gh CLI and GitHub API patterns needed to manage PRs, issues, and Actions for you.

Dev & CodingIntermediate1,323212AI 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, --template and 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

  1. "Open a PR from my current branch and summarize the diff in the body" → runs gh pr create with generated title and description
  2. "Show me open PRs whose checks are failing" → gh pr list --json piped through jq for filtering
  3. "Label bug issues untouched for 30+ days as stale" → API query followed by batched gh issue edit calls

· · · Install guide · · ·

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Install GitHub CLI: macOS brew install gh, Ubuntu sudo apt install gh, Windows winget install GitHub.cli.
  2. Authenticate: run gh auth login and follow the prompts. For enterprise: gh auth login --hostname github.yourcompany.com.
  3. Create the skills folder: mkdir -p ~/.claude/skills
  4. Clone the repo: git clone https://github.com/daymade/claude-code-skills.git /tmp/ccs
  5. Copy the skill: cp -r /tmp/ccs/github-ops ~/.claude/skills/
  6. Verify: restart Claude Code and ask "list the open PRs in this repo" to confirm the skill triggers.
  7. Optional: the NOJIRA: / GR-1234: PR title convention is org-specific — edit ~/.claude/skills/github-ops/SKILL.md to match your team's rules.