$npx -y skills add parcadei/Continuous-Claude-v3 --skill github-searchSearch GitHub code, repositories, issues, and PRs via MCP
| 1 | # GitHub Search Skill |
| 2 | |
| 3 | ## When to Use |
| 4 | |
| 5 | - Search code across repositories |
| 6 | - Find issues or PRs |
| 7 | - Look up repository information |
| 8 | |
| 9 | ## Instructions |
| 10 | |
| 11 | ```bash |
| 12 | uv run python -m runtime.harness scripts/mcp/github_search.py \ |
| 13 | --type "code" \ |
| 14 | --query "your search query" |
| 15 | ``` |
| 16 | |
| 17 | ### Parameters |
| 18 | |
| 19 | - `--type`: Search type - `code`, `repos`, `issues`, `prs` |
| 20 | - `--query`: Search query (supports GitHub search syntax) |
| 21 | - `--owner`: (optional) Filter by repo owner |
| 22 | - `--repo`: (optional) Filter by repo name |
| 23 | |
| 24 | ### Examples |
| 25 | |
| 26 | ```bash |
| 27 | # Search code |
| 28 | uv run python -m runtime.harness scripts/mcp/github_search.py \ |
| 29 | --type "code" \ |
| 30 | --query "authentication language:python" |
| 31 | |
| 32 | # Search issues |
| 33 | uv run python -m runtime.harness scripts/mcp/github_search.py \ |
| 34 | --type "issues" \ |
| 35 | --query "bug label:critical" \ |
| 36 | --owner "anthropics" |
| 37 | ``` |
| 38 | |
| 39 | ## MCP Server Required |
| 40 | |
| 41 | Requires `github` server in mcp_config.json with GITHUB_PERSONAL_ACCESS_TOKEN. |