From dude
Track and manage issues using the dude MCP server. List, create, update issues. Track bugs, tasks, blockers, and problems within projects. Search for issues. Use when tracking bugs, creating tasks, managing blockers, recording problems, or working with issue hierarchies.
How this skill is triggered — by the user, by Claude, or both
Slash command
/dude:issuesThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Track bugs, tasks, and blockers via the `dude:` MCP tools.
Track bugs, tasks, and blockers via the dude: MCP tools.
dude:list_records { "kind": "issue" } - List all issues
dude:upsert_record { "kind": "issue", "title": "BUG: ..." } - Create issue
dude:search { "query": "...", "kind": "issue" } - Find issues
dude:list_records { "kind": "issue" }
dude:list_records { "kind": "issue", "status": "open" }
dude:list_records { "kind": "issue", "project": "my-org/my-repo" }
Parameters:
kind — set to "issue" to filter to issues onlystatus (optional) — "open", "resolved", "archived", or "all"project (optional) — project name, or "*" for all projectsdude:get_record { "id": 42 }
Parameters:
id (required): Record ID (integer)dude:upsert_record {
"kind": "issue",
"title": "BUG: Load cell readings drift after 2 hours",
"body": "Detailed description of the problem..."
}
Parameters:
kind (required): "issue"title (required): Short summary (use prefixes below)body (optional): Full descriptionstatus (optional): Defaults to "open"Provide the id of an existing record to update it:
dude:upsert_record {
"id": 42,
"kind": "issue",
"title": "BUG: Load cell readings drift after 2 hours - found root cause",
"status": "resolved"
}
Set status to "resolved":
dude:upsert_record { "id": 42, "kind": "issue", "title": "...", "status": "resolved" }
To reopen:
dude:upsert_record { "id": 42, "kind": "issue", "title": "...", "status": "open" }
dude:delete_record { "id": 42 }
dude:search {
"query": "memory leak in worker thread",
"kind": "issue",
"project": "my-org/my-repo",
"limit": 10
}
Parameters:
query (required): Natural language search querykind (optional): Set to "issue" to filter resultsproject (optional): Project name to boost, or "*" for equal weightlimit (optional): Max results (default 5)Use prefixes to categorize issues:
BUG: - Defects and errorsTASK: - Work itemsBLOCKER: - Critical blockersQUESTION: - Unknowns needing resolutionnpx 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.
Triages bug reports and error messages by searching Jira for duplicates, checking fix history, and creating structured issues or adding comments.
Manages full GitHub issue lifecycle: create with conventional commit titles, sub-issues, cross-repo links, edit/view/list, dump trees to markdown/YAML, push from files, comment/label/close.