What problem does it solve? Large tasks like codebase-wide sweeps, 100+ file migrations, or multi-source research overflow a single context window because every intermediate result piles into the agent's context. This Skill moves the plan, loop, and intermediate results into a script so only the final verified answer stays in context. ## Core Features & Use Cases - Plan-in-code fan-out: Run a deterministic pre-pass in an execute_code script that builds a manifest, then fan out only the LLM-judgment steps via delegate_task batches. - Adversarial convergence verification: Run N independent attempts plus M refuter agents, keeping only claims that survive refutation, for higher-trust audits and reviews. - Foreground vs durable workflows: Distinguish synchronous single-turn fan-out from durable kanban-swarm workflows that survive interruptions over hours or days. - Use Case: Run a security audit across an entire codebase by scripting the file manifest, fanning out per-chunk review agents, then refuting each atomic claim before surfacing only verified vulnerabilities. ## Quick Start Use the dynamic-workflow skill to audit this entire codebase for security issues by fanning out per-directory review agents and verifying findings with refutation rounds.