github-search

支持在 GitHub 上检索代码、仓库、问题和拉取请求,能够根据关键词、语言、标签等条件进行精确过滤,适用于快速定位开源项目中的技术实现或跟踪特定议题。

快捷安装

在终端运行此命令,即可一键安装该 Skill 到您的 Claude 中

npx skills add parcadei/Continuous-Claude-v3 --skill "github-search"

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.