搜索Claude代码问题Skill search-claude-issues

这个技能是一个快捷命令,用于在Anthropics的Claude Code GitHub仓库中搜索问题,帮助开发者和用户快速查找故障排除信息、bug报告和功能请求。关键词:GitHub问题搜索,Claude Code,故障排除,bug报告,开发工具。

DevOps 0 次安装 0 次浏览 更新于 3/11/2026

name: search-claude-issues description: 搜索Claude Code GitHub问题以进行故障排除。搜索anthropics/claude-code的快捷方式。 argument-hint: <搜索术语> [–label <标签>] [–state open|closed|all] [–format compact|table|detailed] allowed-tools: Bash, Read, Grep, WebFetch, WebSearch

搜索Claude Code问题

快捷命令,用于搜索Claude Code仓库(anthropics/claude-code)中的问题。

用法

/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

参数

  • 搜索术语: 要搜索的关键词(必需)
  • –label: 按标签过滤(可选,可重复)
  • –state: 按状态过滤:open、closed或all(默认:all)
  • –format: 输出格式:compact、table或detailed(默认:compact)
  • –limit: 最大结果数(默认:15)

工作流程

此命令是一个快捷方式,它:

  1. 自动将仓库设置为anthropics/claude-code
  2. 使用提供的搜索术语调用github-issues技能
  3. 返回格式化结果

相当于:/git:search-issues anthropics/claude-code <搜索术语>

示例

搜索钩子问题

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

搜索错误报告

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

仅搜索开放问题

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

获取详细输出

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

常见Claude Code标签

  • bug - 错误报告
  • enhancement - 功能请求
  • hooks - 钩子相关问题
  • mcp - MCP服务器问题
  • documentation - 文档改进
  • good first issue - 适合初学者的问题

输出格式

Compact(默认)

#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

当在PowerShell中使用cd &&时,路径会加倍...

**Workaround:** 使用绝对路径而不是cd &&

相关

  • /git:search-issues - 搜索任何GitHub仓库
  • claude-code-issue-researcher agent - 自主问题研究代理
  • github-issues skill - 所有问题操作的基础技能