From mattpocock-skills
Triages bugs or issues by exploring codebase for root cause, then creates GitHub issue with TDD fix plan. Use for bug reports, triage requests, or fix planning.
How this skill is triggered — by the user, by Claude, or both
Slash command
/mattpocock-skills:triage-issueThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Investigate a reported problem, find its root cause, and create a GitHub issue with a TDD fix plan. This is a mostly hands-off workflow - minimize questions to the user.
Investigate a reported problem, find its root cause, and create a GitHub issue with a TDD fix plan. This is a mostly hands-off workflow - minimize questions to the user.
Get a brief description of the issue from the user. If they haven't provided one, ask ONE question: "What's the problem you're seeing?"
Do NOT ask follow-up questions yet. Start investigating immediately.
Use the Agent tool with subagent_type=Explore to deeply investigate the codebase. Your goal is to find:
Look at:
git log on relevant files)Based on your investigation, determine:
Create a concrete, ordered list of RED-GREEN cycles. Each cycle is one vertical slice:
Rules:
Create a GitHub issue using gh issue create with the template below. Do NOT ask the user to review before creating - just create it and share the URL.
A clear description of the bug or issue, including:
Describe what you found during investigation:
Do NOT include specific file paths, line numbers, or implementation details that couple to current code layout. Describe modules, behaviors, and contracts instead. The issue should remain useful even after major refactors.
A numbered list of RED-GREEN cycles:
RED: Write a test that [describes expected behavior] GREEN: [Minimal change to make it pass]
RED: Write a test that [describes next behavior] GREEN: [Minimal change to make it pass]
...
REFACTOR: [Any cleanup needed after all tests pass]
After creating the issue, print the issue URL and a one-line summary of the root cause.
npx claudepluginhub timothyvang/grill-meInvestigates a bug hands-off, finds root cause, and writes a portable triage record with a TDD fix plan. Use when the user reports a bug and wants it triaged.
Fast bug fixes with root cause investigation + TDD. Enforces 'no fix without root cause' discipline and verification protocol. Without this skill, fixes are applied at symptoms instead of sources, and bugs return.
Guides systematic bug fixing: create issue, debug, write failing test, fix, verify, and close. Includes fix status classification.