From oh-my-team
Deploys parallel agent investigators to test multiple bug hypotheses simultaneously, gather confirming/disproving evidence, synthesize findings, rank causes, and apply minimal verified fixes.
How this skill is triggered — by the user, by Claude, or both
Slash command
/oh-my-team:deep-debug [bug description or error][bug description or error]The summary Claude sees in its skill listing — used to decide when to auto-load this skill
```
TeamCreate(team_name="debug", description="Multi-hypothesis debugging: $ARGUMENTS")
TaskCreate(subject="Hypothesis 1: [theory]", description="Investigate and find evidence for/against")
TaskCreate(subject="Hypothesis 2: [theory]", description="Investigate and find evidence for/against")
TaskCreate(subject="Hypothesis 3: [theory]", description="Investigate and find evidence for/against")
Agent(
prompt="HYPOTHESIS: [theory 1]
Investigate this theory about: $ARGUMENTS
1. What evidence would CONFIRM this?
2. What evidence would DISPROVE this?
3. Search for both. Don't just confirm.
4. Share findings with other teammates via SendMessage.
5. If disproved, say so clearly.",
subagent_type="explorer",
team_name="debug",
name="investigator-1"
)
Agent(
prompt="HYPOTHESIS: [theory 2] ...",
subagent_type="explorer",
team_name="debug",
name="investigator-2"
)
Agent(
prompt="HYPOTHESIS: [theory 3] ...",
subagent_type="explorer",
team_name="debug",
name="investigator-3"
)
After all investigators report, resolve conflicts:
NEVER apply fixes for multiple hypotheses simultaneously. Fix one, verify, then address the next if needed.
npx claudepluginhub erkandogan/oh-my-teamDebug complex issues using competing hypotheses with parallel investigation, evidence collection, and root cause arbitration. Use when bugs have multiple potential causes.
Forces a scientific-method loop (Observe → Hypothesize → Experiment → Conclude) to debug non-trivial bugs. Prevents guessing by ensuring evidence before fixes.
Applies Zeller's scientific method to debug software: reproduce, hypothesize, binary-search isolate, fix root cause, add regression test. Triggers on bug, error, crash, stack trace.