Agent Skills: Search Claude Code Issues

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

UncategorizedID: melodic-software/claude-code-plugins/search-claude-issues

Install this agent skill to your local

pnpm dlx add-skill https://github.com/melodic-software/claude-code-plugins/tree/HEAD/plugins/claude-ecosystem/skills/search-claude-issues

Skill Files

Browse the full folder contents for search-claude-issues.

Download Skill

Loading file tree…

plugins/claude-ecosystem/skills/search-claude-issues/SKILL.md

Skill Metadata

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

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