What problem does it solve?
This Skill simplifies GitHub issue management by letting you create, list, and view issues directly from the command line using the gh CLI, reducing context switching and manual navigation.
Core Features & Use Cases
- Create new issues with a title, body, and optional labels in any repository.
- List open issues with common filters (assignee, label, author, state).
- View issue details, including title, body, labels, assignees, and comments.
- Quickly triage work by turning notes or conversations into issues without leaving the terminal.
- Supports error handling for authentication and repository context to guide users when gh commands fail.
Quick Start
Use the gh CLI to perform the core actions:
- Create: gh issue create --title "Bug in login" --body "Details..." --label "bug"
- List: gh issue list
- View: gh issue view 42