OMX
Oh My CodeXv0.18.9

$swarm

Skill that distributes work to multiple agents in parallel (legacy variant of $team)

TL;DR

$swarm distributes tasks to multiple agents simultaneously. Since $team now handles the same role, $team is recommended for new work.

How to invoke

$swarm "implement frontend, backend, and tests in parallel"

Also activated by magic keywords swarm, team, coordinated team.

$swarm vs $team

Item$swarm$team
StatusLegacy / variantCurrent standard
CapabilitiesParallel agent executionParallel lanes + stage routing
RecommendedExisting workflow compatibilityNew work

$team supports stage-aware routing (plan → exec → verify → fix). Use $team for new work.

When to use it

Good fitAvoid
Parallel tasks that split independentlyRequirements still unclear
Need to maintain existing $swarm workflowsWhen lanes might conflict

For work that needs a single owner over parallelization, $ralph is safer.

  • $team — current standard parallel execution
  • $ralph — single-owner repeat execution

On this page