What problem does it solve?
You delegate tasks to specialized agents with isolated context. By precisely crafting their instructions and context, you ensure they stay focused and succeed at their task. They should never inherit your session's context or history — you construct exactly what they need. This also preserves your own context for coordination work.
When you have multiple unrelated failures (different test files, different subsystems, different bugs), investigating them sequentially wastes time. Each investigation is independent and can happen in parallel.
Core principle: Dispatch one agent per independent problem domain. Let them work concurrently.
Core Features & Use Cases
- Dispatch one agent per independent problem domain and run investigations in parallel.
- Create focused agent prompts with clear goals, constraints, and expected outputs to avoid drift.
- Dispatch in parallel and later review consolidated results to guide integration.
Use Cases
- Failing tests across multiple subsystems with no shared state.
- Investigations that can be compartmentalized and run simultaneously.
Don't Use When
- Failures are related or require full system context.
Quick Start
Provide a prompt to delegate each independent task to a separate agent and collect their results.