orchestrating-swarms

orchestrating-swarms is a skill for Claude Code, Codex from aegntic/compound-engineering. It costs 67 tokens per session (733 once invoked), scanned A, original, MIT.

A workflow guide for coordinating several coding agents on one project, using Claude Code’s teammate and task tools. It covers parallel work, staged handoffs, and combining results.

In plain words
What is it for?
Use it to split research, code reviews, or implementation into parallel tasks; build step-by-step workflows; and merge and verify the results.
Why use it?
It helps decide when multiple agents are worthwhile and prevents duplicated or poorly coordinated work. It also gives each agent clear ownership and tracks dependencies.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: model in frontmatter; mentions subagents; mentions Claude Code.

Good fit Use it to split research, code reviews, or implementation into parallel tasks; build step-by-step workflows; and merge and verify the results.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aegntic/compound-engineering/orchestrating-swarms
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add aegntic/compound-engineering --skill orchestrating-swarms
Clone the repo
git clone --depth 1 https://github.com/aegntic/compound-engineering

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for orchestrating-swarms

README.md
[![agentmods](https://agentmods.dev/badge/skills/aegntic/compound-engineering/orchestrating-swarms.svg)](https://agentmods.dev/skills/aegntic/compound-engineering/orchestrating-swarms)
Your own site
<a href="https://agentmods.dev/skills/aegntic/compound-engineering/orchestrating-swarms"><img src="https://agentmods.dev/badge/skills/aegntic/compound-engineering/orchestrating-swarms.svg" alt="Measured on agentmods" height="20"></a>
Per session 67 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 733 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00067 $0.00733
Opus 5 $0.00034 $0.00367
Sonnet 5 $0.00013 $0.00147
Haiku 4.5 $0.00007 $0.00073

Measured 8d ago against content hash fdcab1224310, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

orchestrating-swarms scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/orchestrating-swarms/SKILL.md · 73 lines

How it starts

The opening of the file, as written. The whole thing — 73 lines — stays where its author put it; the contents beside it link to each section on GitHub.

orchestrating-swarms Skill

Use swarms when the work has real parallelism, specialist boundaries, or dependency staging. If one agent can finish faster than the coordination overhead, stay single-threaded.

When to use

  • Parallel research, review, or implementation tracks.
  • Pipeline work where one stage unlocks another.
  • Large tasks that benefit from specialist prompts and explicit handoffs.
  • Situations where a leader must merge findings from multiple workers.

Workflow

  1. Decide whether you need a swarm. Prefer one agent for linear work, tiny diffs, or tasks with one obvious path.
  2. Break the job into independent units with owners, dependencies, and a concrete finish condition for each unit.
  3. Choose the right worker shape: short-lived subagents for one-off work, persistent teammates only when shared coordination is necessary.
  4. Give every worker full context: goal, scope, constraints, expected output, and what not to touch.
  5. Track progress, unblock dependencies, merge results, verify the combined outcome, then shut the swarm down cleanly.

Operating guide

Subagent vs teammate

  • Use a normal Task/subagent when you want a focused result returned directly.
  • Use a teammate only when the worker needs a shared queue, persistent inbox messaging, or multi-step coordination.
  • Keep the team small. Extra workers are justified only when they remove wall-clock time or increase specialist quality.

Task design

  • Write tasks as outcomes, not vague topics.
  • Keep scopes non-overlapping unless the assignment is an explicit cross-check.
  • Prefer DAG-style dependencies over ad hoc sequencing.
  • State what evidence counts as done: files changed, tests run, findings delivered, screenshots captured, or open questions listed.

Message contract

Have workers report in a terse, machine-checkable shape:

  • status: ready | blocked | done
  • scope: what they owned
  • evidence: commands, files, screenshots, or metrics
  • handoff: what the next worker or leader must do
  • risks: unresolved concerns

Read the full file on GitHub · 73 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 73 lines · 67 tokens per session scan A fdcab1224310

Subscribe to this mod's changes

orchestrating-swarms is a skill published in the GitHub repository aegntic/compound-engineering (2 stars, last pushed 2mo ago), licensed MIT. It adds 67 tokens to every session and 733 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

futbin-cli

Queries FUTBIN (EA FC Ultimate Team database) via cli-web-futbin — player search, prices and price history, comparisons, SBCs, evolutions, and market analytics (index, trending, cheapest by rating, movers, fodder, buy/sell signals, undervalue scans, PS/PC arbitrage). Use when the user asks about EA FC player prices…

ItamarZand88/CLI-Anything-WEB · 116 tokens

sync-check

Walks the documentation dependency web after a CLI code change and reports which downstream files (skills, SOPs, READMEs, plugin references) are out of sync. Use after fixing a bug, adding a command, changing auth behavior, refactoring, or before committing — and when the user says "sync check", "update docs"…

ItamarZand88/CLI-Anything-WEB · 95 tokens

airbnb-cli

Use cli-web-airbnb to search Airbnb stays, get listing details, check availability calendars, read guest reviews, and look up location suggestions. Invoke this skill whenever the user asks about Airbnb accommodations, vacation rentals, listing prices, availability, guest reviews, or wants to search for places to stay.…

ItamarZand88/CLI-Anything-WEB · 76 tokens

gap-analyzer

Compares a CLI's implemented commands against its APP.md API map and traffic-analysis.json to find missing endpoints, incomplete CRUD, dead client methods, and priority gaps. Runs as the mandatory first step of /cli-anything-web:refine and as an optional pre-review scan in standards.

ItamarZand88/CLI-Anything-WEB · 62 tokens

notebooklm-cli

Drives Google NotebookLM via the cli-web-notebooklm command-line tool — create and manage notebooks, add URL/text sources, ask questions grounded in the sources, and generate/download artifacts (audio overview, video, slide deck, mindmap, study guide, quiz, FAQ, briefing, infographic, data table). Use when the user…

ItamarZand88/CLI-Anything-WEB · 109 tokens

airbnb-cli

Searches Airbnb from the terminal via cli-web-airbnb — find stays by location, dates, and filters; get listing details, guest reviews, and availability calendars; autocomplete location names. Use when the user asks about Airbnb, vacation rentals, listing prices, availability, or finding places to stay. Prefer…

ItamarZand88/CLI-Anything-WEB · 78 tokens