agent-swarm-deployer

agent-swarm-deployer is a skill for Claude Code from OneWave-AI/claude-skills. It costs 69 tokens per session (930 once invoked), scanned A, original, MIT.

A system for splitting large data-processing work across many separate AI agents and combining their results. It is meant for independent items such as documents, records, rows, or generated pieces of content.

In plain words
What is it for?
Use it for bulk document processing, dataset analysis, sentiment analysis, lead scoring, summarisation, or content generation, with results saved as JSON, CSV, Markdown, or separate files.
Why use it?
Processing a large collection one item at a time can be slow and hard to track. This provides a way to distribute the work, monitor progress, validate completeness, retry failures, and aggregate the outputs.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter. Also seen: mentions subagents.

Good fit Use it for bulk document processing, dataset analysis, sentiment analysis, lead scoring, summarisation, or content generation, with results saved as JSON, CSV, Markdown, or separate files.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/onewave-ai/claude-skills/agent-swarm-deployer
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 OneWave-AI/claude-skills --skill agent-swarm-deployer
Clone the repo
git clone --depth 1 https://github.com/OneWave-AI/claude-skills

Made for: Claude Code.

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 agent-swarm-deployer

README.md
[![agentmods](https://agentmods.dev/badge/skills/onewave-ai/claude-skills/agent-swarm-deployer/github.svg)](https://agentmods.dev/skills/onewave-ai/claude-skills/agent-swarm-deployer)
Your own site
<a href="https://agentmods.dev/skills/onewave-ai/claude-skills/agent-swarm-deployer"><img src="https://agentmods.dev/badge/skills/onewave-ai/claude-skills/agent-swarm-deployer/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for agent-swarm-deployer

Your own site · 80×15
<a href="https://agentmods.dev/skills/onewave-ai/claude-skills/agent-swarm-deployer"><img src="https://agentmods.dev/badge/skills/onewave-ai/claude-skills/agent-swarm-deployer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 69 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 930 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00069 $0.00930
Opus 5 $0.00034 $0.00465
Sonnet 5 $0.00014 $0.00186
Haiku 4.5 $0.00007 $0.00093

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

Security

Grade A, and why

agent-swarm-deployer 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 12d 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.

agent-swarm-deployer/SKILL.md · 49 lines

How it starts

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

Agent Swarm Deployer

Deploy a swarm of parallel sub-agents to process massive, independent data tasks (documents, records, rows, items) and aggregate the results. Use this for data operations; use agent-army for code changes.

Contents

  • references/overview.md -- swarm vs army comparison, use cases, architecture diagram
  • references/swarm-design.md -- input/output schemas, batch-size and swarm-size formulas, scaling guidelines
  • references/agent-brief.md -- agent brief template, data distribution methods, progress tracking
  • references/aggregation-recovery.md -- merge logic, completeness validation, retry strategy, error-handling table
  • references/output-formats.md -- CSV/JSON/Markdown/individual-file outputs, final summary report
  • references/task-configs.md -- ready-made configs for sentiment, lead scoring, content generation, summarization

Workflow

  1. Understand the task. Pin down five things before deploying anything: data source, operation per item, output format, output destination, and quality/validation requirements. If any is ambiguous, ask the user first -- a wrong spec wastes all agent compute.

  2. Intake and inventory. Glob/Bash to locate and count items. Read 3-5 samples to learn structure. Estimate tokens per item and total. Report an intake summary (source, total count, item format, sample structure, token estimate).

  3. Detect input schema and define output schema. Derive the input schema from samples; define the exact output schema the task requires. See references/swarm-design.md.

  4. Design the swarm. Compute batch size from token budget (70% of ~200K usable context per agent) and swarm size from total items. Cap at 20 agents per wave; split into waves beyond that. Present the swarm plan and agent assignments, then get approval. See references/swarm-design.md.

  5. Prepare agent briefs. Build a self-contained brief per agent: role, task, input data, output schema with example, quality rules, error protocol, and strict JSON output format. See references/agent-brief.md.

Read the full file on GitHub · 49 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 12d ago First seen · 49 lines · 69 tokens per session scan A aa4a34392a1e

Subscribe to this mod's changes

agent-swarm-deployer is a skill published in the GitHub repository OneWave-AI/claude-skills (291 stars, last pushed 1mo ago), licensed MIT. It adds 69 tokens to every session and 930 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-30.

Related

Other skills, from other repositories

seo-aeo-geo

Optimize content and site structure for AI-driven search experiences including AI overviews, large language model citations, generative answer engines, and AI assistants. Use this skill whenever the user wants to optimize for AI search, get cited by language models, appear in AI overviews, build llms.txt, structure…

rampstackco/claude-skills · 163 tokens

vision

Call vision models (Doubao, Qwen, DeepSeek, OpenAI) to analyze images. Use when you need to understand screenshots, UI layouts, diagrams, or any image content. Supports png/jpg/webp/gif.

xiincs/claude-code-vision-skill · 49 tokens

building-langflow-components

Create, evolve, and ship Langflow Components — the building blocks of every flow. Use when the user asks to "create a component", "add a provider component", "build an LLM component", "add Anthropic / OpenAI / Chroma / etc. integration", "expose this as a Component", or "wrap this LangChain class as a Component".…

Cristhianzl/claude-skills-czl · 137 tokens

r-spss-syntax-architect

A guide for turning research hypotheses into repeatable R or SPSS code for statistical analysis. It covers panel data, where the same companies or other units are observed over time, as well as interaction effects, curves, and mediation.

Nero1688/claude-academic-skills · 406 tokens

oracle-grill-me

Grill the user relentlessly about a plan, decision, or idea, maintaining the project's domain model (CONTEXT.md, ADRs) as decisions crystallise. Use when the user wants to stress-test their thinking, or uses any 'grill' trigger phrases.

martinffx/atelier · 58 tokens

evaluating-ai-output

Evaluate non-deterministic LLM/AI output with evals instead of one-shot "it worked" — define expected behavior first, measure pass@k / pass^k, and grade with code / model / human graders. Use when building or changing an AI/LLM feature, an agent, a prompt, a RAG pipeline, or a classifier, where a single good run is…

Cristhianzl/claude-skills-czl · 106 tokens