Back to skills
SkillHub ClubShip Full StackFull Stack
github-search
Search GitHub code, repositories, issues, and PRs via gh CLI
Packaged view
This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.
Stars
1
Hot score
77
Updated
March 20, 2026
Overall rating
C0.4
Composite score
0.4
Best-practice grade
B81.2
Install command
npx @skill-hub/cli install sitaggart-claude-devbench-github-search
Repository
SiTaggart/claude-devbench
Skill path: plugins/devbench/skills/github-search
Search GitHub code, repositories, issues, and PRs via gh CLI
Open repositoryBest for
Primary workflow: Ship Full Stack.
Technical facets: Full Stack.
Target audience: everyone.
License: Unknown.
Original source
Catalog source: SkillHub Club.
Repository owner: SiTaggart.
This is still a mirrored public skill entry. Review the repository before installing into production workflows.
What it helps with
- Install github-search into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
- Review https://github.com/SiTaggart/claude-devbench before adding github-search to shared team environments
- Use github-search for development workflows
Works across
Claude CodeCodex CLIGemini CLIOpenCode
Favorites: 0.
Sub-skills: 0.
Aggregator: No.
Original source / Raw SKILL.md
--- name: github-search description: Search GitHub code, repositories, issues, and PRs via gh CLI allowed-tools: [Bash, Read] --- # GitHub Search Skill ## When to Use - Search code across repositories - Find issues or PRs - Look up repository information ## Instructions ```bash gh search <type> <query> [flags] ``` ### Parameters - `<type>`: Search type - `code`, `repos`, `issues`, `prs` - `<query>`: Search query (supports GitHub search syntax) - `--owner`: (optional) Filter by repo owner (all search types) - `--repo`: (optional) Filter by repo name (code/issues/prs only) - `--limit`: (optional) Max results to fetch - `--`: (optional) Use before the query when it contains a `-` qualifier, e.g. `-- "bug -label:critical"` ### Examples ```bash # Search code gh search code "authentication language:python" # Search issues gh search issues "bug label:critical" --owner "anthropics" # Search pull requests in a repo gh search prs "is:open review:required" --repo "cli/cli" ``` ## Requirements Requires GitHub CLI (`gh`) to be installed and authenticated (`gh auth status` or `gh auth login`).