Stats
Actions
Tags
How this skill is triggered — by the user, by Claude, or both
Slash command
/agent-swarm:debugThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
```bash
python3 ~/.claude/plugins/agent-swarm/lib/debug_workflow.py start "$ARGUMENTS"
TRIAGE -> REPRODUCE -> HYPOTHESIZE -> [adversary] -> PROVE -> [adversary] -> FIX -> [adversary] -> VERIFY -> PUSH -> CHECK_STATUS -> DONE
| Phase | Purpose | Allowed | Blocked |
|---|---|---|---|
| TRIAGE | Understand bug context | Read, Glob, Grep, Web | Edit, Write |
| REPRODUCE | Create failing test | Read, Glob, Grep, Edit, Write, Bash | (test files only) |
| HYPOTHESIZE | Form root cause theory | Read, Glob, Grep | Edit, Write |
| PROVE | Verify hypothesis | Read, Glob, Grep, Bash | Edit, Write |
| FIX | Implement fix | Read, Glob, Grep, Edit, Write, Bash | - |
| VERIFY | Run tests/lint | Read, Glob, Grep, Bash | Edit, Write |
| PUSH | Push changes | Bash | - |
| CHECK_STATUS | Verify CI/reviews | Read, Bash | Edit, Write |
| From | To | Trigger |
|---|---|---|
| REPRODUCE | TRIAGE | Can't reproduce |
| PROVE | HYPOTHESIZE | Prediction not confirmed |
| VERIFY | PROVE | Tests/lint fail |
| CHECK_STATUS | PROVE | CI fails or new comments |
python3 lib/debug_workflow.py start "desc" # Start
python3 lib/debug_workflow.py status # Status
python3 lib/debug_workflow.py phase # Current phase
python3 lib/debug_workflow.py triage <sev> "<components>" "<artifacts>" # Record triage
python3 lib/debug_workflow.py hypothesis "<hypothesis>" "<prediction>" # Record hypothesis
python3 lib/debug_workflow.py verify <tests> <lint> # Record (1=pass)
python3 lib/debug_workflow.py advance # Next phase
python3 lib/debug_workflow.py stop # Stop
npx claudepluginhub c-daly/agent-swarm --plugin agent-swarmCreates bite-sized, testable implementation plans from specs or requirements, with file structure and task decomposition. Activates before coding multi-step tasks.