Token导航 LogoToken导航TokenDH.com
研究检索权限需确认github未标认证来源可访问许可证需确认审计未展示

github-issue-searchGitHub issue 搜索

Agent Skill

用于围绕 GitHub 仓库、Issue、Pull Request、分支、提交和代码协作流程提供辅助能力。它适合让 Agent 查询项目状态、整理变更、辅助创建或检查协作事项,并把仓库中的信息转成可执行的下一步。使用时需要区分只读查询和写入操作;涉及创建 PR、修改 Issue、推送分支或访问私有仓库时,应确认 token 权限、目标仓库范围和用户授权。

总安装

198

周安装

8

GitHub Stars

28

下载量

62
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:github-issue-search(GitHub issue 搜索)
来源仓库:https://github.com/laurigates/claude-plugins
仓库路径:skills/github-issue-search
安装命令:
npx skills add https://github.com/laurigates/claude-plugins --skill github-issue-search
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/laurigates/claude-plugins --skill github-issue-search

简介

用于在 GitHub 上搜索相关 Issue 和问题讨论。

  • 支持全文检索和语义匹配技术。github-issue-search 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 可跨仓库和项目进行全局搜索。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 帮助开发者快速找到已有解决方案。
  • 搜索结果受 API 配额和索引范围限制。

SKILL.md

created
2025-12-16
modified
2026-04-25
reviewed
2026-04-25
name
github-issue-search
description
Search GitHub issues for solutions, workarounds, and discussions for open source problems. Use when encountering errors with OSS libraries or finding upstream bug workarounds.
user-invocable
false
allowed-tools
Bash, Read, Grep, Glob

GitHub Issue Search for Solutions

When to Use This Skill

Use this skill when...Use github-actions-inspection instead when...
Looking up upstream bug reports for an OSS library error messageInvestigating a failing workflow run in your own repository
Finding closed-issue workarounds before filing a new bugPulling logs, statuses, or job conclusions from gh run
Surveying reactions/comments to gauge issue popularity or fix availabilityRerunning failed jobs or watching an in-progress workflow

Search GitHub repository issues to find solutions, workarounds, and discussions for open source software problems.

For detailed examples, advanced patterns, and best practices, see REFERENCE.md.

When to Use

Use this skill automatically when:

  • User encounters errors or problems with open source software
  • User mentions a library/package name with an error message
  • User asks "has anyone reported this issue before?"
  • User needs workarounds for known bugs
  • User wants to understand if a problem is already tracked
  • Debugging reveals potential upstream issues

Core Capabilities

Search Issues by Error Message

When encountering an error, search the repository for related issues:

Error Message -> Extract Keywords -> Search Issues -> Find Solutions

MCP Tool Used: mcp__github__search_issues

Search Query Construction:

  1. Extract error type (e.g., "TypeError", "ECONNREFUSED", "panic")
  2. Extract key terms from error message
  3. Identify repository from context (package.json, go.mod, error stack trace)
  4. Construct targeted search query

Search Patterns

By Error Message:

Query: "TypeError: Cannot read property 'map' of undefined repo:facebook/react"

By Symptom:

Query: "memory leak kubernetes deployment repo:kubernetes/kubernetes"

By Feature/Behavior:

Query: "authentication timeout websocket repo:socketio/socket.io"

By Version:

Query: "breaking change v2.0.0 migration repo:vuejs/vue"

Search Strategy Summary

StrategyWhen to UseKey Approach
Error-focusedSpecific error messageExtract unique error terms, search repo
Symptom-basedObservable behavior, no exact errorDescribe behavior + version/component
Version-specificIssue after upgradingVersion number + issue type, check migration
Workaround discoveryKnown issue, need temp fixSearch closed issues for code snippets

Using GitHub MCP Tools

Search Issues

Tool: mcp__github__search_issues

Parameters:
- query: Search query with GitHub search syntax
- owner: Repository owner (optional, can be in query)
- repo: Repository name (optional, can be in query)
- sort: "comments", "created", "updated", "reactions"
- order: "asc" or "desc"
- perPage: Number of results (max 100)
- page: Page number for pagination

Examples:

// Search by error message
{
  "query": "TypeError map undefined repo:facebook/react",
  "sort": "updated",
  "order": "desc",
  "perPage": 20
}

// Search by label and state
{
  "query": "label:bug is:closed memory leak repo:nodejs/node",
  "sort": "reactions",
  "order": "desc"
}

// Search recent issues
{
  "query": "authentication failed created:>2024-01-01 repo:auth0/auth0-spa-js",
  "sort": "created",
  "order": "desc"
}

Get Issue Details

Tool: mcp__github__issue_read

Parameters:
- method: "get" (issue details), "get_comments" (comments)
- owner: Repository owner
- repo: Repository name
- issue_number: Issue number
- perPage: Results per page
- page: Page number

Example:

// Get issue details
{
  "method": "get",
  "owner": "facebook",
  "repo": "react",
  "issue_number": 12345
}

// Get issue comments (where solutions often are)
{
  "method": "get_comments",
  "owner": "facebook",
  "repo": "react",
  "issue_number": 12345,
  "perPage": 50
}

Quick Reference: Search Query Syntax

FilterSyntaxExample
Repositoryrepo:owner/reporepo:facebook/react
Open onlyis:openbug is:open
Closed onlyis:closedfix is:closed
Issues onlyis:issueerror is:issue
Labellabel:namelabel:bug
Exclude label-label:name-label:wontfix
Created aftercreated:>DATEcreated:>2024-01-01
Updated afterupdated:>DATEupdated:>2024-11-01
Authorauthor:userauthor:octocat
Reactionsreactions:>Nreactions:>10
Commentscomments:>Ncomments:>5
Exclude term-term-test -mock
Organizationorg:nameorg:kubernetes

Agentic Optimizations

ContextCommand
Quick error searchmcp__github__search_issues with error keywords + repo: filter
Find workaroundsSearch closed issues: query + is:closed repo:owner/repo
Popular issuesSort by reactions: sort: "reactions"
Recent issuesFilter by date: created:>YYYY-MM-DD
Get solution detailsmcp__github__issue_read with method: "get_comments"

Related Skills

  • System Debugging - Use issue search during debugging
  • Helm Debugging - Search helm/helm for Helm issues
  • Package Management - Search dependency issues
  • Git Operations - Link issues in commits/PRs

References

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.48%
按下载量换算21

Claude

31.26%
按下载量换算19

Cursor

17.79%
按下载量换算11

Gemini CLI

8.31%
按下载量换算5

安全审计

暂无安全审计结果可展示。

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills