Eliminate AI blind spots by dispatching parallel agents across providers — then let them cross-review until they converge.
Fire 3–6 delegate() calls in a single message, each targeting a different AI provider. They all work in parallel. Same task. Different minds.
After the initial sweep, route each provider's findings to a different provider for review. This catches false positives and surfaces overconfident mistakes.
All providers agree on a finding? High confidence. Ship it. No further review needed.
Disagreement on a finding? Route it for another round of targeted cross-review.
Multiple providers flag a false positive? Drop it. Cross-review caught the error.
A real application built using multi-provider swarm validation — not a demo, not a toy.
This isn't a special feature. It's a technique that emerges naturally from existing primitives.
delegate() + provider_preferencesRoute any agent to any provider with a single parameter
Multiple delegate() calls in one message — they run concurrently
context_scope="agents" passes prior agent results forward
Root session synthesizes all agent results into final decision
Next time you're reviewing code, analyzing architecture, or validating an approach — dispatch the swarm. Let them argue. Ship the consensus.