From dream-team
Guides hypothesis-driven debugging through reproduce, investigate, fix, and verify cycles. Useful for bugs, test failures, and unexpected behavior.
How this skill is triggered — by the user, by Claude, or both
Slash command
/dream-team:debug <describe what's broken><describe what's broken>The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Help the user debug an issue through systematic investigation and hypothesis-driven problem solving. This is a conversation, not a fix-it script.
Help the user debug an issue through systematic investigation and hypothesis-driven problem solving. This is a conversation, not a fix-it script.
Start by understanding the issue, then reproduce it, form theories, investigate with evidence, and only fix once you understand the root cause.
Understanding the issue:
Reproducing the issue:
playwright_* tools available, use them:
playwright_navigate to load the pageplaywright_screenshot to capture visual evidenceplaywright_click / playwright_fill to interact with elementsplaywright_evaluate to check console errors and stateForming hypotheses:
Investigating:
Root cause identified:
- File: [path:line]
- Problem: [what's wrong]
- Why: [explanation]
- Evidence: [what you observed]
Fixing:
Verifying:
After fixing, provide a clear summary:
Debug session complete.
Issue: [brief description]
Root Cause: [what was wrong]
Fix: [what changed]
Files modified:
- [path] — [summary of changes]
Verification:
- [x] Issue no longer reproduces
- [x] Tests pass
- [x] Related functionality checked
playwright_* toolsStop and ask the user for help if:
npx claudepluginhub ratler/dream-team --plugin dream-teamDiagnoses failures, fixes bugs, and investigates failing tests using systematic debugging: reproduce first, read before changing, assume nothing, find root cause.
Enforces systematic root cause analysis for bugs, test failures, unexpected behavior, and regressions via five-phase workflow: Understand, Reproduce, Isolate, Fix, Verify.
Hunts down and fixes bugs using a systematic debugging process: reproduce, gather evidence, hypothesize, test, find root cause, and implement fix.