Query and search GitHub issues using gh CLI with web fallback. Supports filtering by labels, state, assignees, and full-text search. Use when troubleshooting errors, checking if an issue is already reported, or finding workarounds.
View on GitHubmelodic-software/claude-code-plugins
git
January 21, 2026
Select agents to install to:
npx add-skill https://github.com/melodic-software/claude-code-plugins/blob/main/plugins/git/skills/github-issues/SKILL.md -a claude-code --skill github-issuesInstallation paths:
.claude/skills/github-issues/# GitHub Issues Lookup Query and search GitHub issues for troubleshooting, bug tracking, and finding workarounds. Supports `gh` CLI with automatic web fallback. ## Overview This skill provides comprehensive guidance for querying GitHub issues from any repository. It prioritizes the GitHub CLI (`gh`) for fast, reliable access with automatic fallback to web-based methods when gh is unavailable. **Core value:** Quickly find relevant issues when troubleshooting errors, checking if bugs are already reported, or discovering workarounds for known problems. ## When to Use This Skill This skill should be used when: - **Troubleshooting errors** - Search for issues matching error messages or symptoms - **Checking if issue exists** - Before reporting a bug, search for duplicates - **Finding workarounds** - Discover solutions from issue discussions - **Tracking features** - Search for feature requests and their status - **Understanding history** - Find closed issues explaining past decisions **Trigger keywords:** github issues, search issues, find issue, bug report, issue lookup, gh issue, troubleshoot, workaround, known issue ## Prerequisites **Recommended (not required):** - **GitHub CLI (gh)** - Install from <https://cli.github.com/> - **Authentication** - Run `gh auth login` for private repos The skill works without `gh` by falling back to web-based methods. ## Quick Start ### Search Issues (gh CLI) ```bash # Check if gh is available gh --version # Search for issues by keyword gh issue list --repo owner/repo --search "keyword" --state all # Filter by label gh issue list --repo owner/repo --label "bug" --state open # View specific issue gh issue view 11984 --repo owner/repo # Search with multiple terms gh issue list --repo owner/repo --search "error message here" --limit 20 ``` ### Search Issues (Web Fallback) When gh is unavailable, use WebSearch or WebFetch: ```text # Search via web (using WebSearch tool) Search: "site:github.com/owner/repo/issues keyw