From issue
Reads details of a GitHub issue including title, description, labels, and comments. Use when the user wants to view issue information or start working on an issue.
How this skill is triggered — by the user, by Claude, or both
Slash command
/issue:read-issueThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Retrieves and displays GitHub issue information including title, description, labels, assignees, and comments.
Retrieves and displays GitHub issue information including title, description, labels, assignees, and comments.
!gh issue view $ARGUMENTS --json title,state,labels,assignees,body,url,comments --template '{{.title}}{{"\n"}}{{.state}}{{"\n"}}{{.url}}{{"\n"}}Labels: {{range .labels}}{{.name}} {{end}}{{"\n"}}Assignees: {{range .assignees}}{{.login}} {{end}}{{"\n"}}{{.body}}{{"\n"}}{{range .comments}}{{.author.login}} - {{.createdAt}}:{{"\n"}}{{.body}}{{"\n\n"}}{{end}}' | cat
IMPORTANT: You MUST output a summary to the user. After gathering the issue information above, display a formatted summary that includes:
$ARGUMENTS)Format the output clearly using markdown so the user can see the issue details at a glance. This summary should always be visible in your response to the user.
npx claudepluginhub boringhappy/codemate --plugin issueGuides on working with GitHub issues: read descriptions/comments/related PRs, define acceptance criteria with verifiable behaviors, and commit with proper references.
Fetches a GitHub issue with all images and screenshots downloaded locally so Claude can read them. Use when a user provides an issue URL, asks to view an issue, references an issue number, or asks about issue screenshots.
Manages GitHub issues via `gh` CLI: reads issues, atomically updates checkboxes, creates/links sub-issues, edits/closes/adds labels, downloads images. Auto-triggers on issue URLs or commands like 'read issue'.