What problem does it solve? Applying the same mechanical change or scan across dozens or hundreds of files is slow and error-prone when done sequentially by a single agent. This Skill divides a file set into disjoint slices, dispatches parallel worker agents in one message, and aggregates their reports. ## Core Features & Use Cases - Parallel file slicing: Enumerates tracked files with git ls-files, sorts by size, and round-robins them into up to 6 worker buckets so no file is touched twice. - Detect, fix, and dry-run modes: Run read-only scans, apply edits, or preview proposed changes before committing to a fix. - Structured aggregation: Each worker returns a changed/skipped/no-op report that the orchestrator merges into a single Markdown summary with cross-cutting notes. - Use Case: Replace inline StyleSheet.create blocks across 80 React Native components by dispatching 4 workers, each editing only its assigned slice, then reviewing the merged report before running CI. ## Quick Start Ask the agent to run /fanout with an instruction like "find raw Pressable used as buttons" over your source directory in detect mode.