github-search

📁 parcadei/continuous-claude-v3 📅 Jan 22, 2026
41
总安装量
41
周安装量
#5104
全站排名
安装命令
npx skills add https://github.com/parcadei/continuous-claude-v3 --skill github-search

Agent 安装分布

claude-code 37
opencode 33
gemini-cli 29
cursor 25
antigravity 25

Skill 文档

GitHub Search Skill

When to Use

  • Search code across repositories
  • Find issues or PRs
  • Look up repository information

Instructions

uv run python -m runtime.harness scripts/mcp/github_search.py \
    --type "code" \
    --query "your search query"

Parameters

  • --type: Search type – code, repos, issues, prs
  • --query: Search query (supports GitHub search syntax)
  • --owner: (optional) Filter by repo owner
  • --repo: (optional) Filter by repo name

Examples

# Search code
uv run python -m runtime.harness scripts/mcp/github_search.py \
    --type "code" \
    --query "authentication language:python"

# Search issues
uv run python -m runtime.harness scripts/mcp/github_search.py \
    --type "issues" \
    --query "bug label:critical" \
    --owner "anthropics"

MCP Server Required

Requires github server in mcp_config.json with GITHUB_PERSONAL_ACCESS_TOKEN.