The simplest parallel pattern. Spawn N agents, each handling an independent slice, then synthesize results. How it works:Documentation Index
Fetch the complete documentation index at: https://agentic.proxify.io/llms.txt
Use this file to discover all available pages before exploring further.
- Break work into independent units (by file, module, or concern)
- Spawn one agent per unit with
run_in_background: true - Each agent works autonomously and returns results
- The parent synthesizes when all complete
Examples in the wild
| Example | What it shows |
|---|---|
| planning-coordinator | 4 parallel researcher agents (code-explorer, arch-researcher, database-analyst, security-analyst) fan into a single plan. Explicit file ownership per agent. |
| deep-research | Breaks a topic into sub-questions, one agent per sub-question, synthesizes into a report. Write-to-disk / return-confirmation-only in practice. |