car-multi
Multi-agent coordination patterns for the Common Agent Runtime.
What it does
Provides six coordination patterns for running multiple agents together: Swarm (parallel/sequential/debate), Pipeline (linear chain), Supervisor (review loop), Delegator (spawn specialists mid-run), MapReduce (fan-out + reduce), and Vote (majority wins). Agents communicate via shared state, task enrichment, and async mailboxes.
Usage
use ;
let agents = vec!;
let swarm = new;
let result = swarm.run.await?;
Part of CAR -- see the main repo for full documentation.