From issue
Identifies unclear or missing information in a GitHub issue and posts clarifying questions as a comment. Adds a needs-more-info label if clarification is needed.
How this skill is triggered — by the user, by Claude, or both
Slash command
/issue:classify-issueThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Identifies unclear or missing information in an issue and posts targeted clarifying questions as a comment.
Identifies unclear or missing information in an issue and posts targeted clarifying questions as a comment.
!gh issue view $ARGUMENTS --json title,labels,body,url,comments --template '{{.title}}{{"\n"}}{{.url}}{{"\n"}}Labels: {{range .labels}}{{.name}} {{end}}{{"\n"}}{{.body}}{{"\n"}}{{range .comments}}{{.author.login}} ({{.createdAt}}):{{"\n"}}{{.body}}{{"\n\n"}}{{end}}' | cat
Use the Glob tool to find files matching .github/ISSUE_TEMPLATE/** and then use the Read tool to read each template file found. If no files are found, note that no issue templates exist.
Identify the relevant issue template based on labels or title prefix (same logic as issue:refine-issue).
Check for:
If clarification is needed:
Compose a polite comment with specific, numbered questions. Example format:
Thanks for opening this issue! To help us address it effectively, could you clarify a few things?
1. <specific question about missing/unclear field>
2. <specific question about missing/unclear field>
...
This will help us reproduce and prioritize the issue.
Post the comment:
gh issue comment $ARGUMENTS --body "<composed comment>"
Add the label:
gh issue edit $ARGUMENTS --add-label "needs-more-info"
If the issue is sufficiently clear:
Report to the user that the issue contains all necessary information and no clarification is needed. Do not post any comment or add any label.
Tell the user:
needs-more-info label was addednpx claudepluginhub boringhappy/codemate --plugin issueTriages new GitHub issues — classifies, reproduces bugs, attempts conservative fixes, and comments. Use when a new issue is opened and needs automated triage.
Guides on working with GitHub issues: read descriptions/comments/related PRs, define acceptance criteria with verifiable behaviors, and commit with proper references.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.