skills/dispatching-parallel-agents/SKILL.md
Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies
npx skillsauth add kienbui1995/magic-powers dispatching-parallel-agentsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Delegate tasks to specialized agents with isolated context. Each agent gets precisely crafted instructions — never your session history.
Core principle: One agent per independent problem domain. Let them work concurrently.
Use when:
Don't use when:
Group by what's broken:
Each domain is independent — fixing auth doesn't affect rendering.
Each agent gets:
| Task Type | Agent | Why | |-----------|-------|-----| | Bug investigation | debugger (Sonnet) | Systematic debugging, full tools | | Code review | reviewer (Haiku) | Fast, cheap, read-only | | Architecture question | architect (Opus) | Deep reasoning | | Implementation | (default subagent) | Sonnet, balanced |
After all agents complete:
| Pattern | Problem | |---------|---------| | Dumping full session context | Agents get confused, waste tokens | | Overlapping file scope | Merge conflicts | | Too many agents at once | Hard to coordinate | | Not reviewing results | Agents can make mistakes |
content-media
Use when designing for XR (AR/VR/MR), choosing interaction modes, or adapting 2D UI patterns for spatial computing
testing
Use when creating new skills, editing existing skills, or verifying skills work before deployment
development
Use when you have a spec or requirements for a multi-step task, before touching code
development
Use when executing a structured workflow — select and run a feature, bugfix, refactor, research, or incident template with correct agent and model assignments per phase.