Claude-skill-registry github-operations
Use when Codex must inspect or update GitHub resources (issues, PRs, workflows) through the official remote GitHub MCP server.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/github-operations" ~/.claude/skills/majiayu000-claude-skill-registry-github-operations && rm -rf "$T"
manifest:
skills/data/github-operations/SKILL.mdsource content
GitHub Operations
Purpose
Provide actionable steps for reviewing pull requests, triaging issues, syncing branches, and triggering GitHub workflows using the GitHub-hosted MCP server defined in
servers/github.
Setup Checklist
- Ensure
includes themcp.json
entry pointing togithub
with the${GITHUB_MCP_ENDPOINT}
Authorization header.${GITHUB_MCP_TOKEN} - Confirm scopes on
cover${GITHUB_MCP_TOKEN}
,repo
, andworkflow
.read:org - Keep repository context synchronized locally so file diffs referenced by the server make sense inside this workspace.
Core Workflow
- Plan – summarize the GitHub objective (e.g., “merge PR #42 after lint passes”) and list the API actions needed (
,pullRequest.get
, etc.).reviews.create - Execute – call the MCP tools exposed by the server (issue search, PR diff, workflow dispatch). Prefer batched queries to avoid rate limits.
- Validate – re-fetch the entity to confirm the state transition (PR merged, labels applied, workflow run queued).
- Document – record actions inside the user message or repository docs when follow-up by humans is required.
Operational Notes
- Rate limits from GitHub are enforced at the server; when a call is throttled, wait 5 seconds and retry once.
- Use read-only queries when gathering context for other skills (e.g., fetching PR details before a filesystem refactor) to minimize write noise.
- Treat
as a production credential—store it in${GITHUB_MCP_TOKEN}
and do not log it..env.local