swarm
langchain-ai/langchain-skills
Dispatch many independent items in parallel across subagents and aggregate results.
What is swarm?
Swarm processes many independent items in parallel by creating a table, fanning work out to subagents, and merging results back. Use it when you have a batch of similar tasks where each row represents one unit of work.
- Create a table from files, glob patterns, or pre-parsed records
- Dispatch instruction templates across rows in parallel with automatic batching
- Merge results back into the table with structured output schema
- Aggregate results using plain JavaScript without spawning additional subagents
- Retry failed rows by filtering and re-running specific columns
- Chain multiple passes to accumulate columns progressively
How to install swarm
npx skills add https://github.com/langchain-ai/langchain-skills --skill swarm- @langchain/quickjs code interpreter installed
- swarm_task, read_file, write_file, edit_file, and glob PTC tools available
How to use swarm
- 1.Create a table from your source (glob pattern, file paths, or pre-parsed records)
- 2.Define an instruction template with {column} placeholders and a responseSchema
- 3.Call run() to dispatch work across rows; swarm auto-batches to keep dispatches under 10
- 4.Optionally set subagentType for tasks requiring tools or multi-step reasoning
- 5.Use rows() and plain JavaScript to aggregate results after run() completes
- 6.Chain additional run() calls with filters to process specific rows in subsequent passes
Use cases
- Classify or label a batch of text items in parallel
- Review multiple files for security issues or code quality
- Extract structured data from many documents simultaneously
- Process JSONL or CSV records with multi-step reasoning per row
- Analyze interview transcripts or survey responses at scale
- Data engineers processing large batches of similar items
- Security reviewers auditing multiple files or codebases
- Data scientists labeling or classifying datasets
- Backend developers automating repetitive analysis tasks
swarm FAQ
Omit subagentType for simple classification, extraction, or labeling tasks where a single model call is sufficient — this is faster and cheaper. Set subagentType when your task requires tools, file access, or multi-step reasoning.
For files under ~500 lines, parse and create in one block. For larger files, read in chunks of 500 lines and accumulate records, then pass to create(). Alternatively, split parsing and dispatch across two separate eval blocks.
By default, swarm auto-batches to keep total dispatches under 10. Set batchSize as a number for uniform grouping or as a function to vary batch size per row — for example, process complex items individually and batch simple ones together.
No. Subagents do the work — do not process items yourself in JS. Use the instruction template with {column} placeholders and let subagents handle the logic.
After run() completes, use run() again with filter: { column: "<col>", exists: false } to reprocess only rows where that column is missing or null.
Full instructions (SKILL.md)
Source of truth, from langchain-ai/langchain-skills.
name: swarm description: >- Dispatches many independent items in parallel: create a table, fan out to subagents, aggregate results. One row = one unit of work. compatibility: >- Requires @langchain/quickjs code interpreter with swarm_task PTC tool metadata: entrypoint: scripts/index.ts required-ptc-tools: swarm_task read_file write_file edit_file glob
Swarm
Process many independent items in parallel. create builds a table handle;
run fans work out across rows and merges results back. One row = one unit
of work — swarm handles batching automatically.
Flow
- Create. Build a table from a source — files, a glob pattern, or pre-parsed records. One row per item. Returns a handle.
- Run. Dispatch an
instructiontemplate across rows. Results are merged back into the table. Returns{ completed, failed, skipped, failures }. - Aggregate. Use
rows()and plain JS to count, filter, or summarize. Do not spawn additional subagents for aggregation. - Retry. Re-run with
filter: { column: "<col>", exists: false }to reprocess only failed rows.
Choosing a source
glob / filePaths — one file = one row. Use when each file is an
independent unit of work. Each row gets { id, file }; the subagent reads
the file itself via the {file} placeholder.
tasks — pass pre-built records directly. Use when the data lives inside
a file (JSONL, CSV, JSON array). Read and parse the file first inside
eval, then pass the records. One record = one row — do not group
multiple items into a single row.
For small files (under ~500 lines), parse and create in one block:
const { create } = await import("@/skills/swarm");
const raw = await tools.readFile({ file_path: "/data.jsonl" });
const records = raw.trim().split("\n").map(l => JSON.parse(l));
const table = await create({ tasks: records });
console.log(table);
For large files, read in chunks of 500 lines to avoid truncation:
const { create } = await import("@/skills/swarm");
let records = [];
let offset = 0;
while (true) {
const chunk = await tools.readFile({ file_path: "/data.txt", offset, limit: 500 });
const lines = chunk.split("\n").filter(l => l.trim());
for (const l of lines) { records.push({ id: `r${records.length}`, text: l }); }
if (lines.length < 500) break;
offset += 500;
}
const table = await create({ tasks: records });
console.log(table);
When the file is too large to parse and dispatch in one eval call, split
across two blocks. Only the block that calls swarm functions needs the import:
// eval 1: parse only — no swarm import needed
const raw = await tools.readFile({ file_path: "/data.jsonl" });
globalThis.records = raw.trim().split("\n").map(l => JSON.parse(l));
console.log(`Parsed ${globalThis.records.length} records`);
// eval 2: create and dispatch
const { create, run } = await import("@/skills/swarm");
const table = await create({ tasks: globalThis.records });
const result = await run(table.id, {
instruction: "Classify {text}",
responseSchema: {
type: "object",
properties: { label: { type: "string" } },
required: ["label"],
},
});
console.log(result);
Passing filePaths: ["/data.jsonl"] would produce a table with one row
pointing at the file — not one row per record inside it.
When to use subagentType
Omit subagentType for classification, extraction, labeling, and any task
where a single model call with structured output is sufficient. This is the
default and is significantly cheaper and faster — each dispatch is a direct
model call, no tools, no iteration.
Set subagentType when the task requires tools, file access, or multi-step
reasoning. Each dispatch runs a full agentic loop with the named subagent.
// Direct model call — classification, no tools needed
await run(table.id, {
instruction: "Classify {text}",
responseSchema: { type: "object", properties: { label: { type: "string" } }, required: ["label"] },
});
// Subagent — needs to read files and reason over multiple steps
await run(table.id, {
subagentType: "reviewer",
instruction: "Review {file} for security issues.",
responseSchema: { type: "object", properties: { finding: { type: "string" } }, required: ["finding"] },
});
Instruction + context
instruction is a per-item template with {column} placeholders.
Placeholders are resolved by the framework — your column names appear in
prompts as references to the values listed alongside, never as raw
template syntax. Subagents do the work — do not process items yourself in
JS and write the results into rows.
context is free-form prose prepended to every subagent prompt. Use it for
shared background: domain terms, classification rules, examples, etc.
const { create, run } = await import("@/skills/swarm");
const table = await create({ glob: "src/**/*.ts" });
const r = await run(table.id, {
subagentType: "reviewer",
instruction: "Review {file} for security issues. List findings or write 'no issues'.",
context: "TypeScript Express backend using Prisma ORM. Focus on injection, auth bypass, path traversal.",
responseSchema: {
type: "object",
properties: { review: { type: "string" } },
required: ["review"],
},
});
console.log(r);
// → { completed: 45, failed: 2, skipped: 0, failures: [...] }
Structured output
responseSchema is required. Schema properties become top-level columns on
each row and constrain what subagents can return.
const { run } = await import("@/skills/swarm");
await run(table.id, {
instruction: "Classify: {text}",
responseSchema: {
type: "object",
properties: {
sentiment: { type: "string", enum: ["positive", "negative", "neutral"] },
},
required: ["sentiment"],
},
});
// Row after: { id: "r1", text: "...", sentiment: "positive" }
Batching
By default, swarm auto-batches to keep total dispatches under 10. For small tables (≤10 rows) each row gets its own subagent call. For larger tables, rows are grouped automatically.
Set batchSize to control grouping:
- Number — uniform batch size for all rows.
batchSize: 1forces per-row dispatch;batchSize: 20groups in twenties. - Function —
(row, rowCount) => number. Returns the desired batch size for each row. Rows with the same batch size are grouped together, then chunked. Allows mixed dispatch where some rows go solo and others batch.
const { create, run } = await import("@/skills/swarm");
const table = await create({ tasks: items });
// Complex items get individual attention; simple ones batch together
await run(table.id, {
instruction: "Analyze {text}",
responseSchema: {
type: "object",
properties: { analysis: { type: "string" } },
required: ["analysis"],
},
batchSize: (row) => (row.token_count > 1000 ? 1 : 10),
});
Batch sizes are clamped to [1, 50] after evaluation.
Aggregation
After run(), use rows() and plain JS — no additional subagents needed.
const { rows } = await import("@/skills/swarm");
const data = await rows(table.id, { columns: ["sentiment"] });
const counts = {};
data.forEach(r => { counts[r.sentiment] = (counts[r.sentiment] || 0) + 1 });
console.log(counts);
// → { positive: 120, negative: 45, neutral: 35 }
Chaining passes
run updates the table in place — chain calls to accumulate columns.
const { create, run } = await import("@/skills/swarm");
const table = await create({ tasks: interviews });
await run(table.id, {
instruction: "Classify sentiment of {text}",
responseSchema: {
type: "object",
properties: { sentiment: { type: "string", enum: ["positive", "negative", "neutral"] } },
required: ["sentiment"],
},
});
await run(table.id, {
filter: { column: "sentiment", equals: "negative" },
instruction: "Summarize why {text} had negative sentiment.",
responseSchema: {
type: "object",
properties: { summary: { type: "string" } },
required: ["summary"],
},
});
Action-only tasks
When subagents perform actions (write a file, apply a fix) rather than return
data, use a simple schema with a status or marker field. The exists: false
filter still works for retries.
const { create, run } = await import("@/skills/swarm");
const fixedSchema = {
type: "object",
properties: { fixed: { type: "string" } },
required: ["fixed"],
};
const table = await create({ glob: "src/**/*.ts" });
await run(table.id, {
subagentType: "fixer",
instruction: "Add missing JSDoc to all exported functions in {file}.",
responseSchema: fixedSchema,
});
// retry any that failed
await run(table.id, {
subagentType: "fixer",
instruction: "Add missing JSDoc to all exported functions in {file}.",
responseSchema: fixedSchema,
filter: { column: "fixed", exists: false },
});
Filtering
{ column: "status", equals: "done" }
{ column: "status", notEquals: "done" }
{ column: "category", in: ["A", "B"] }
{ column: "result", exists: false } // not yet processed
{ and: [filter1, filter2] }
{ or: [filter1, filter2] }
Technical notes
- Only import
@/skills/swarmin blocks where you call swarm functions. Data preparation (reading files, parsing, storing inglobalThis) does not need the import. Destructure only what you use:{ create },{ run },{ create, run }, etc. - Console output is capped at ~5 KB. Never log raw file contents — log only counts and short samples.
readFileinsideevalreturns raw content — no line-number prefixes. Request at most 500 lines per call. For files with more than 500 lines, loop with incrementingoffset.- When building a table from a file, read it inside
eval. Data read inside the sandbox stays there; it never enters the agent's context window. - Never write to
.swarm/directly. Always usecreate(). - Everything the subagent needs must be in
instruction+context. Subagents can't see the agent's context. - Row ids must be unique.
create()rejects sources that produce duplicate ids. Fortasks, that's a caller-side responsibility; forglob/filePaths, ids are auto-disambiguated by parent directory. - Unknown columns fail fast. If
instructionreferences{foo}and no matched row providesfoo,run()throws before any subagent is dispatched.
API Reference
create(source)
Create a table. Returns a handle { id, count, columns }.
| Source | Description |
|---|---|
{ glob: "src/**/*.ts" } or { glob: ["src/**/*.ts", "lib/**/*.ts"] } | Match files by one or more patterns. Columns: id, file |
{ filePaths: ["a.ts", "b.ts"] } | Explicit file list. Columns: id, file |
{ tasks: [{ id: "t1", text: "..." }] } | Custom rows. Each must have id |
run(tableId, options)
Dispatch work across rows. Returns { completed, failed, skipped, failures }.
| Option | Default | Description |
|---|---|---|
instruction | (required) | Template with {column} placeholders |
responseSchema | (required) | JSON Schema (type: "object") — properties become row columns |
context | — | Prose prepended to every subagent prompt |
filter | — | Only dispatch matching rows |
subagentType | — | Name of subagent to dispatch to. When set, runs a full agentic loop. When omitted, runs a direct model call |
batchSize | auto | Number or (row, rowCount) => number. Auto caps dispatches at 10; 1 = per-row; function = per-row sizing |
concurrency | 10 | Max concurrent subagent dispatches (clamped to 1–10) |
rows(tableId, options?)
Retrieve rows. Use for inspection and JS-based aggregation.
| Option | Description |
|---|---|
filter | Only return matching rows |
columns | Project to specific columns |
limit | Max rows returned |
Related skills
More from langchain-ai/langchain-skills and the wider catalog.

deep-agents-core
Framework for building multi-step AI agents with built-in planning, memory, and skill management

deep-agents-memory
Pluggable memory and file backends for Deep Agents: ephemeral, persistent, or hybrid routing.

deep-agents-orchestration
Orchestrate subagents, plan tasks, and require human approval in Deep Agents

ecosystem-primer
Start here: framework selection and setup for LangChain, LangGraph, and Deep Agents projects.

langsmith-dataset
Create, manage, and upload evaluation datasets to LangSmith for testing and validation.

langsmith-evaluator
Build evaluation pipelines for LangSmith with LLM-as-Judge and custom code evaluators.