home / skills / yeachan-heo / oh-my-claudecode / swarm
This skill routes swarm invocations to the Team skill, enabling coordinated multi-agent task execution with familiar interfaces.
npx playbooks add skill yeachan-heo/oh-my-claudecode --skill swarmReview the files below or copy the command above to add this skill to your agents.
---
name: swarm
description: N coordinated agents on shared task list (compatibility facade over team)
---
# Swarm (Compatibility Facade)
Swarm is a compatibility alias for the `/oh-my-claudecode:team` skill. All swarm invocations are routed to the Team skill's staged pipeline.
## Usage
```
/oh-my-claudecode:swarm N:agent-type "task description"
/oh-my-claudecode:swarm "task description"
```
## Behavior
This skill is identical to `/oh-my-claudecode:team`. Invoke the Team skill with the same arguments:
```
/oh-my-claudecode:team <arguments>
```
Follow the Team skill's full documentation for staged pipeline, agent routing, and coordination semantics.
This skill provides a compatibility alias named "swarm" that routes invocations to the Team skill's staged pipeline. It preserves the same semantics and behavior as the Team skill while offering a familiar name for workflows built around the concept of a coordinated swarm of agents. Use it when you want the same multi-agent orchestration under the "swarm" command surface.
Swarm forwards any invocation to the Team skill with identical arguments, so all orchestration, agent routing, and staged-pipeline logic are handled by the Team implementation. You can pass an explicit agent count and type or just a task description; the Team pipeline receives and executes the request. Because swarm is a compatibility facade, it does not duplicate logic but acts as a stable alias to the Team orchestration layer.
Is swarm different from Team?
No. Swarm is a compatibility alias that forwards requests to the Team skill and uses the same staged pipeline and coordination semantics.
What command formats are supported?
You can call swarm with an explicit agent count and type (N:agent-type "task description") or with just a task description; both are routed to Team.