From dude
Interactive issue review and grooming session. Pulls all issues for the current project and walks through them with the user to triage, update, resolve, or archive. Use when grooming a backlog, reviewing open issues, or cleaning up stale tasks.
How this skill is triggered — by the user, by Claude, or both
Slash command
/dude:review-issuesThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Walk through all issues for the current project with the user.
Walk through all issues for the current project with the user.
When this skill is invoked, follow these steps in order:
Call these in parallel:
dude:list_records { "kind": "issue", "status": "open" }
dude:list_records { "kind": "issue", "status": "resolved" }
Show the user a summary of what exists:
For each open issue, present it and ask the user:
Apply changes immediately using:
dude:upsert_record { "id": <issue_id>, "kind": "issue", "title": "<updated_title>", "status": "<new_status>" }
Ask the user if they want to review recently resolved issues. If yes, walk through them and ask:
Ask the user if there are any new issues to capture. If yes, create them:
dude:upsert_record { "kind": "issue", "title": "TASK: <description>", "body": "<details>" }
Present a final summary of all changes made during the session:
| Tool | Purpose |
|---|---|
dude:list_records | Fetch issues by kind and status |
dude:upsert_record | Update or create issues |
dude:search | Find related issues if needed |
npx claudepluginhub fingerskier/claude-plugins --plugin dudeTracks project blockers, bugs, and gaps across sessions with persistent issue storage. Lists, adds, and resolves issues with categories and severity.
Triage GitHub issues via a state machine with category and state roles. Useful for creating issues, reviewing incoming bugs or feature requests, preparing issues for AFK agents, or managing issue workflow.
Triages issues through a state machine with bug/enhancement categories and needs-triage/info/ready-for-agent/ready-for-human/wontfix states. Shows unlabeled and needs-triage issues, recommends labels, and attempts bug reproduction.