name: github-issues description: Fetches open GitHub issues for the current repository using the gh CLI. user_invocable: true
GitHub Issues
Fetch and display open issues for the current repository.
Instructions
Check if
ghCLI is installed by runningwhich gh. If not installed, inform the user they need to install it: https://cli.github.comRun
gh issue list --state open --json number,title,body,labels,author,createdAtto fetch all open issues.Display the issues in a clear, readable format showing:
- Issue number
- Title
- Body
- Labels (if any)
- Author
- Created date
If there are no open issues, inform the user.