From swarm
Quickly add a task to the swarm board from any chat. Use when the user types /task, "task add", or wants to drop work onto the swarm for the agent team to pick up. Examples: /task add "Build the login form" high frontend · /task list
How this skill is triggered — by the user, by Claude, or both
Slash command
/swarm:taskThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Drop a task onto the swarm board from anywhere. Any connected worker (Claude/Codex/Gemini)
Drop a task onto the swarm board from anywhere. Any connected worker (Claude/Codex/Gemini) picks it up automatically — the lead routes it, or an idle worker claims it off the board.
This is a thin shortcut over the swarm CLI. The swarm tooling lives in the sibling swarm
skill, so swarm-cli.js is at {skillDir}/../swarm/lib/swarm-cli.js.
| Input | Action |
|---|---|
/task add "<title>" [priority] [tags] | Create an open task on the board |
/task "<title>" [priority] [tags] | Same as add (the add word is optional) |
/task list | Show the board (open/assigned/done) |
priority = critical | high | medium | low (default medium). tags = comma-separated,
used to route the task to the best-matched worker (e.g. frontend, backend, testing).
.swarm/ folder.
If none exists, tell the user to run /swarm init first.CLI = {skillDir}/../swarm/lib/swarm-cli.js.# add
node "{CLI}" create "<title>" --priority <priority> --tags <tags> --root "<swarmRoot>"
# list
node "{CLI}" tasks --root "<swarmRoot>"
/swarm commands
(/swarm start, /swarm worker claude|codex …)..swarm/tasks/.Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub mmvinfo28/swarm --plugin swarm