What problem does it solve? Processing hundreds of independent items (files, records, texts) one-by-one through an LLM is slow and error-prone. This Skill fans work out to parallel subagents, batches rows automatically, and merges structured results back into a queryable table. ## Core Features & Use Cases - Parallel Fan-Out: Create a table from a glob pattern, file list, or pre-parsed records, then dispatch an instruction template across every row with bounded concurrency. - Structured Output & Batching: Enforce JSON Schema responses that become row columns, with automatic or custom batch sizing to control dispatch counts. - Filtering, Retry & Aggregation: Re-run only failed rows with exists-filters, chain multiple passes to accumulate columns, and aggregate results with plain JavaScript. - Use Case: Classify the sentiment of 200 customer feedback records from a JSONL file, then run a second pass summarizing only the negative ones. ## Quick Start Use the swarm skill to classify the sentiment of every record in feedback.jsonl in parallel and summarize the counts by label.