Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问clear审计提醒

github-issuesGitHub Issues 管理

Agent Skill

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

总安装

233

周安装

10

GitHub Stars

61

下载量

82
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/melodic-software/claude-code-plugins --skill github-issues

简介

用于围绕 GitHub 仓库、Issue 和 PR 提供协作辅助能力。

  • 适合查询项目状态、整理变更或创建协作事项。
  • 使用时需区分只读查询和写入操作,避免越权访问。
  • 涉及私有仓库或修改操作时应确认 token 权限和用户授权。
  • github-issues 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

GitHub Issues Lookup

Query and search GitHub issues for troubleshooting, bug tracking, and finding workarounds. Supports gh CLI with automatic web fallback.

Overview

This skill provides comprehensive guidance for querying GitHub issues from any repository. It prioritizes the GitHub CLI (gh) for fast, reliable access with automatic fallback to web-based methods when gh is unavailable.

Core value: Quickly find relevant issues when troubleshooting errors, checking if bugs are already reported, or discovering workarounds for known problems.

When to Use This Skill

This skill should be used when:

  • Troubleshooting errors - Search for issues matching error messages or symptoms
  • Checking if issue exists - Before reporting a bug, search for duplicates
  • Finding workarounds - Discover solutions from issue discussions
  • Tracking features - Search for feature requests and their status
  • Understanding history - Find closed issues explaining past decisions

Trigger keywords: github issues, search issues, find issue, bug report, issue lookup, gh issue, troubleshoot, workaround, known issue

Prerequisites

Recommended (not required):

The skill works without gh by falling back to web-based methods.

Quick Start

Search Issues (gh CLI)

# Check if gh is available
gh --version

# Search for issues by keyword
gh issue list --repo owner/repo --search "keyword" --state all

# Filter by label
gh issue list --repo owner/repo --label "bug" --state open

# View specific issue
gh issue view 11984 --repo owner/repo

# Search with multiple terms
gh issue list --repo owner/repo --search "error message here" --limit 20

Search Issues (Web Fallback)

When gh is unavailable, use WebSearch or WebFetch:

# Search via web (using WebSearch tool)
Search: "site:github.com/owner/repo/issues keyword"

# Direct URL pattern
https://github.com/owner/repo/issues?q=keyword

Core Capabilities

1. Basic Issue Search

Search issues by keywords, matching title and body text.

gh CLI:

# Basic keyword search (all states)
gh issue list --repo anthropics/claude-code --search "path doubling" --state all

# Open issues only
gh issue list --repo anthropics/claude-code --search "path doubling" --state open

# Closed issues only
gh issue list --repo anthropics/claude-code --search "path doubling" --state closed

For detailed query syntax: See references/query-patterns.md


2. Filter by Labels

Narrow results using repository labels.

# Single label
gh issue list --repo owner/repo --label "bug"

# Multiple labels (AND)
gh issue list --repo owner/repo --label "bug" --label "high-priority"

# Common label patterns
gh issue list --repo owner/repo --label "enhancement" --state open
gh issue list --repo owner/repo --label "documentation"

3. Filter by Assignee/Author

Find issues by who created or is assigned to them.

# By assignee
gh issue list --repo owner/repo --assignee username

# By author
gh issue list --repo owner/repo --author username

# Combined filters
gh issue list --repo owner/repo --author username --state closed

4. View Issue Details

Get full issue content including description and comments.

# View issue (opens in terminal)
gh issue view 11984 --repo anthropics/claude-code

# View with comments
gh issue view 11984 --repo anthropics/claude-code --comments

# JSON output for parsing
gh issue view 11984 --repo anthropics/claude-code --json title,body,comments

5. Web Fallback Strategy

When gh CLI is unavailable, fall back to web-based methods.

Detection:

# Check if gh is available
if command -v gh &> /dev/null; then
    echo "gh available"
else
    echo "falling back to web"
fi

Web methods (in order of preference):

  1. WebSearch tool: site:github.com/owner/repo/issues keyword
  2. firecrawl MCP: Scrape GitHub search results
  3. Direct URL: https://github.com/owner/repo/issues?q=keyword

For detailed fallback guidance: See references/web-fallback.md


Output Formats

The skill supports three output formats:

Compact (default)

One line per issue, good for scanning:

#11984 [open] Path doubling in PowerShell hooks (bug, hooks)
#11523 [closed] Fix memory leak in long sessions (bug, fixed)
#10892 [open] Add custom status line support (enhancement)

Table

Markdown table format for structured display:

| # | State | Title | Labels |
| --- | --- | --- | --- |
| 11984 | open | Path doubling in PowerShell hooks | bug, hooks |
| 11523 | closed | Fix memory leak in long sessions | bug, fixed |

Detailed

Full information for deep investigation:

### #11984 - Path doubling in PowerShell hooks
**State:** open | **Labels:** bug, hooks | **Created:** 2024-12-01
**URL:** https://github.com/anthropics/claude-code/issues/11984

When using cd && in PowerShell, paths get doubled...

Common Workflows

Troubleshooting an Error

  1. Extract key terms from error message
  2. Search issues with those terms
  3. Check both open and closed issues
  4. Look for workarounds in comments
# Example: Troubleshoot a specific error
gh issue list --repo anthropics/claude-code --search "ENOENT" --state all --limit 10

Before Reporting a Bug

  1. Search for existing issues with similar symptoms
  2. Check closed issues for past fixes
  3. If duplicate exists, add your context as a comment
# Search before reporting
gh issue list --repo owner/repo --search "feature not working" --state all

Finding Workarounds

  1. Search closed issues with your problem keywords
  2. Look for issues with "workaround" or "solution" in body
  3. Check issue comments for community solutions
# Find workarounds
gh issue list --repo owner/repo --search "workaround" --state closed --label "bug"

Error Handling

gh not installed

Error: gh: command not found

Solution: Install GitHub CLI from https://cli.github.com/
  - macOS: brew install gh
  - Windows: winget install --id GitHub.cli
  - Linux: See https://github.com/cli/cli/blob/trunk/docs/install_linux.md

Alternatively, falling back to web-based search...

Not authenticated

Error: gh requires authentication

Solution: Run `gh auth login` and follow the prompts.
For public repos, web fallback can be used without authentication.

Rate limited

Error: API rate limit exceeded

Solution: Wait 60 seconds before retrying.
Authenticated requests have higher limits (5000/hour vs 60/hour).

No results found

No issues found matching "very specific query"

Suggestions:
- Try broader search terms
- Remove filters (state, label)
- Check spelling
- Search closed issues too (--state all)

References

Detailed Guides:

Related Agents:

  • history-reviewer agent - Git history exploration and summarization

Test Scenarios

Scenario 1: Basic issue search

Query: "Search for issues about hooks in the Claude Code repo"

Expected Behavior:

  • Skill activates on "issues", "hooks", "Claude Code"
  • Checks if gh CLI is available
  • Runs gh issue list --repo anthropics/claude-code --search "hooks" --state all
  • Returns formatted results

Scenario 2: Troubleshooting error

Query: "I'm getting a path doubling error in PowerShell. Is this a known issue?"

Expected Behavior:

  • Skill activates on "error", "known issue", "PowerShell"
  • Searches for related issues
  • Finds #11984 and similar
  • Provides workaround if available

Scenario 3: Fallback to web

Query: "Search for issues but gh isn't installed"

Expected Behavior:

  • Detects gh not available
  • Falls back to WebSearch with site:github.com/owner/repo/issues
  • Returns results in same format

Version History

  • v1.0.0 (2025-12-26): Initial release

Last Updated

Date: 2025-12-05 Model: claude-opus-4-5-20251101

Audit Status: NEW - Pending initial audit

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

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

平台分布

trae

29.19%
按下载量换算24

Antigravity

23.81%
按下载量换算20

windsurf

16.97%
按下载量换算14

Claude Code

12.27%
按下载量换算10

Codex

7.13%
按下载量换算6

Gemini CLI

3.42%
按下载量换算3

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/melodic-software/claude-code-plugins --skill github-issues;npx skills add melodic-software/claude-code-plugins --skill "github-issues" 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills