| name | issues |
| description | List GitHub issues for the current repository |
| argument-hint | [--state open|closed|all] [--label LABEL] [--assignee USER] |
| allowed-tools | ["Read","Bash","Bash(${CLAUDE_PLUGIN_ROOT}/scripts/*.sh:*)","AskUserQuestion"] |
Issues - List GitHub Issues
Display GitHub issues for the current repository. You execute this directly.
Step 1: Check GitHub Setup
"${CLAUDE_PLUGIN_ROOT}/scripts/check-gh-setup.sh"
Parse the JSON output and check preferred_method:
If preferred_method is "none":
Check the specific issue:
- If
gh_installed is false:
GitHub CLI is not installed.
To install:
- macOS: brew install gh
- Windows: winget install GitHub.cli
- Linux: See https://github.com/cli/cli/blob/trunk/docs/install_linux.md
Alternatively, set a GITHUB_TOKEN environment variable to use the API directly.
- If
gh_installed is true but gh_authenticated is false:
GitHub CLI is installed but not authenticated.
Run: gh auth login
This will guide you through authentication with your GitHub account.
Then exit - do not continue to Step 2.