Skip to main content
Generalmelodic-software

search-claude-issues

Search Claude Code GitHub issues for troubleshooting. Shortcut for searching anthropics/claude-code.

Stars
74
Source
melodic-software/claude-code-plugins
Updated
2026-04-07
Slug
melodic-software--claude-code-plugins--search-claude-issues
View on GitHubRaw SKILL.md

// install — copy + paste into any project

mkdir -p .claude/skills && curl -fsSL https://raw.githubusercontent.com/melodic-software/claude-code-plugins/HEAD/plugins/claude-ecosystem/skills/search-claude-issues/SKILL.md -o .claude/skills/search-claude-issues.md

Drops the SKILL.md into .claude/skills/search-claude-issues.md. Works with Claude Code, Cursor, and any agent that loads SKILL.md files from .claude/skills/.

Search Claude Code Issues

Shortcut command to search issues in the Claude Code repository (anthropics/claude-code).

Usage

/claude-ecosystem:search-claude-issues path doubling
/claude-ecosystem:search-claude-issues hooks error --label bug
/claude-ecosystem:search-claude-issues "MCP timeout" --state open

Arguments

  • Search terms: Keywords to search for (required)
  • --label: Filter by label (optional, can be repeated)
  • --state: Filter by state: open, closed, or all (default: all)
  • --format: Output format: compact, table, or detailed (default: compact)
  • --limit: Maximum results (default: 15)

Workflow

This command is a shortcut that:

  1. Sets repository to anthropics/claude-code automatically
  2. Invokes the github-issues skill with provided search terms
  3. Returns formatted results

Equivalent to: /git:search-issues anthropics/claude-code <search-terms>

Examples

Search for Hook Issues

/claude-ecosystem:search-claude-issues hooks PreToolUse

Search for Bug Reports

/claude-ecosystem:search-claude-issues memory leak --label bug

Search Open Issues Only

/claude-ecosystem:search-claude-issues "context window" --state open

Get Detailed Output

/claude-ecosystem:search-claude-issues "path doubling" --format detailed

Common Claude Code Labels

  • bug - Bug reports
  • enhancement - Feature requests
  • hooks - Hook-related issues
  • mcp - MCP server issues
  • documentation - Documentation improvements
  • good first issue - Beginner-friendly issues

Output Formats

Compact (default)

#11984 [open] Path doubling in PowerShell hooks (bug, hooks)
#11523 [closed] Fix memory leak in long sessions (bug, fixed)

Table

| # | State | Title | Labels |
| --- | --- | --- | --- |
| 11984 | open | Path doubling in PowerShell hooks | bug, hooks |

Detailed

### #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...

**Workaround:** Use absolute paths instead of cd &&

Related

  • /git:search-issues - Search any GitHub repository
  • claude-code-issue-researcher agent - Autonomous issue research
  • github-issues skill - Underlying skill for all issue operations