Claude-skill-registry gh-searching-issues
Performs advanced searches for issues. Use when looking for duplicates or specific keywords across repositories.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/gh-searching-issues" ~/.claude/skills/majiayu000-claude-skill-registry-gh-searching-issues && rm -rf "$T"
manifest:
skills/data/gh-searching-issues/SKILL.mdsource content
Searching GitHub Issues
Purpose
Finds issues using the
gh search issues command with powerful qualifiers.
1. Safety & Verification
- Qualifiers: Supports
,label:
,state:
, etc.author:
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