skills/github-ops/SKILL.md
GitHub operations via gh CLI for pull requests/PRs, GitHub code search, and drafting exact gh commands. Always use instead of WebFetch for github.com.
npx skillsauth add Thomashighbaugh/opencode github-opsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Full GitHub MCP Server parity using the gh CLI. This skill provides all the functionality of the official GitHub MCP Server without the token overhead.
Requirements: gh CLI installed and authenticated (gh auth login).
| Domain | Script | Key Operations |
|--------|--------|----------------|
| Repositories | repos.sh | view, clone, fork, list, create, delete, contents |
| Issues | issues.sh | list, view, create, close, reopen, comment, labels |
| Pull Requests | prs.sh | list, view, create, merge, diff, checks, review |
| Actions | actions.sh | runs, jobs, logs, artifacts, workflows, rerun |
| Releases | releases.sh | list, view, create, delete, download assets |
| Code Security | code-security.sh | code scanning alerts, dependabot alerts |
| Discussions | discussions.sh | list, view, comments, categories |
| Notifications | notifications.sh | list, mark read, subscription |
| Search | search.sh | repos, code, issues, PRs, users, commits |
| Users | users.sh | profile, followers, following, emails |
| Organizations | orgs.sh | info, members, teams, repos |
| Gists | gists.sh | list, view, create, edit, delete |
| Projects | projects.sh | list, view, items, fields (v2) |
Run scripts directly from the skill directory:
cd {base_directory}
# Repository operations
bash scripts/repos.sh view --owner facebook --repo react
bash scripts/repos.sh contents --owner vercel --repo next.js --path packages
# Issue operations
bash scripts/issues.sh list --owner cli --repo cli --state open --limit 10
bash scripts/issues.sh view --owner cli --repo cli --number 123
# Pull request operations
bash scripts/prs.sh list --owner facebook --repo react --state open
bash scripts/prs.sh diff --owner cli --repo cli --number 456
# And so on for each domain...
Use the router for unified access:
cd {base_directory}
bash scripts/router.sh repos view --owner facebook --repo react
bash scripts/router.sh issues list --owner cli --repo cli --state open
bash scripts/router.sh search repos --query "language:go stars:>10000"
When the user asks for commands or "exact gh commands", respond with the command(s) first (gh or scripts), then brief notes if needed. Avoid prose-only answers for command requests.
If the user asks to list pull requests or to show the exact commands, always include a literal gh command line in the response.
If owner/repo is missing, still provide the exact gh command with OWNER/REPO placeholders, then ask the user to confirm the repo.
Each script follows a consistent pattern:
bash scripts/<domain>.sh <action> [options]
| Option | Description | Example |
|--------|-------------|---------|
| --owner | Repository owner | --owner facebook |
| --repo | Repository name | --repo react |
| --number | Issue/PR number | --number 123 |
| --limit | Max results | --limit 10 |
| --state | Filter by state | --state open |
| --json | JSON output | --json |
Destructive operations require confirmation:
The scripts will prompt for confirmation before executing destructive actions.
Detailed script reference: For full parameters, options, and examples for all 13 domain scripts, read
references/script-domains.md.
All scripts follow these error handling rules:
# Check auth status
gh auth status
# Login
gh auth login
# Refresh with additional scopes
gh auth refresh -s repo -s workflow -s read:org
Edit config/toolsets.json to enable/disable feature groups:
{
"enabled": ["repos", "issues", "prs", "actions", "users"],
"disabled": ["projects", "gists"]
}
MCP Parity: This skill provides equivalent functionality to all GitHub MCP Server toolsets.
tools
Analyze a codebase and auto-generate project-specific agents, skills, tools, and rules into .opencode/. Project wrappers inject deep project context into subagents for dramatically more effective AI assistance.
development
Synchronize opencode.jsonc with the latest OpenCode config schema from Context7. Checks schema, detects drift, and updates config to remain compliant.
development
Enforce the <Agent_Prompt> XML wrapper convention across all agent definition files. Scan, validate, and auto-fix non-compliant agents.
development
Auto-maintained vector DB for semantic search over .opencode/context/ — zero manual triggers needed