返回 Skill 列表
extension
分类: 开发与工程无需 API Key

gh-searching-issues

执行高级搜索以查找问题。在寻找重复项或特定关键词时使用。

person作者: jakexiaohubgithub

Searching GitHub Issues

Purpose

Finds issues using the gh search issues command with powerful qualifiers.

1. Safety & Verification

  • Qualifiers: Supports label:, state:, author:, etc.

2. Common Workflows

Workflow: Search by Keyword

Finds open issues matching a string.

Command:

gh search issues "bug" --state open --json number,title,repository

Workflow: Find Unprojected Issues

Finds issues that are not in any project.

Command:

gh search issues --no-project --state open --json number,title