SKIP TO CONTENT
All articles
NEWS ANALYSIS·June 23, 2026·12 MIN READ

Multi-Agent Orchestration Hits Critical Mass in June 2026: Sakana AI's Fugu, Claude Dynamic Workflows, and What to Build Next

By EndOfCoding

Two events in the last 48 hours signal that multi-agent orchestration has crossed from research demo to production tooling. On June 22, Sakana AI launched Fugu and Fugu Ultra — a specialized multi-agent orchestration system that fans out reasoning tasks to coordinated sub-agents. Four weeks earlier, Anthropic shipped Dynamic Workflows inside Claude Code: the ability to spawn up to 1,000 concurrent sub-agents within a single session. Together, they represent the same architectural bet from two different directions. If you are building AI-powered applications in mid-2026 and you haven't yet thought about multi-agent architecture, this is the week to start.

What You'll Learn

You will understand what Sakana AI's Fugu and Fugu Ultra actually do and how they differ from earlier multi-agent systems, how Claude Code Dynamic Workflows enable 1,000-subagent fan-out within a single session, the three scenarios where multi-agent architecture genuinely outperforms a single large-context model, a step-by-step design pattern for fan-out pipelines you can implement today, the cost math that makes multi-agent economically viable, and which job roles are emerging at the intersection of orchestration engineering and AI.

What Sakana AI Fugu Actually Does

Sakana AI (the Tokyo-based lab known for evolutionary model merging) launched Fugu and its more capable sibling Fugu Ultra on June 22, 2026. The core idea: instead of asking one large model to reason through a complex problem from start to finish, Fugu decomposes the problem and fans it out to a team of specialized sub-agents — each optimized for one part of the task — then synthesizes their outputs.

The canonical Fugu architecture:

  • Decomposer agent: Breaks the incoming task into independent sub-problems
  • Specialist agents: Each handles one sub-problem domain (code review, security analysis, documentation, test generation)
  • Synthesizer agent: Collects sub-agent outputs and merges them into a coherent final result
  • Verifier agent: Checks the synthesized output against the original task requirements

Fugu Ultra adds a second orchestration layer — meta-agents that monitor specialist performance and dynamically re-allocate tasks to better-performing sub-agents mid-run.


Claude Code Dynamic Workflows: The Same Bet from Anthropic

Anthropic shipped Dynamic Workflows with Claude Opus 4.8 on May 28, 2026. The mechanism: a single Claude Code session can now spawn and coordinate up to 1,000 concurrent sub-agents, with the orchestrator allocating tasks on demand and aggregating results.

The key technical distinction from earlier "agent teams" capability:

  • Earlier: Fixed-topology teams (orchestrator + N fixed specialists, N typically <10)
  • Dynamic Workflows: The orchestrator allocates sub-agents as a compute resource, scaling up or down mid-task based on queue depth

Real-world use cases shipping in production right now:

  • Codebase security audits: Fan out to 50 parallel file-scanning agents, reduce a 10,000-file audit from hours to minutes
  • Multi-repo CI/CD triage: Each failing build gets its own diagnostic agent; results aggregated in one report
  • Content moderation at scale: 1,000 items processed concurrently instead of sequentially

Three Scenarios Where Multi-Agent Beats Single-Context

Not every problem benefits from multi-agent architecture. The patterns where it genuinely wins:

Scenario 1: Input volume exceeds any single context window If your task involves more source material than a 1M-token context can hold — thousands of files, gigabytes of logs, years of database records — fan-out is the only path. Each sub-agent holds a slice of the input; the orchestrator holds only the schemas and the synthesis.

Scenario 2: Independent parallel analyses needed on shared input Security audit + performance review + documentation check on the same codebase. Each analysis is independent but operates on the same source. Run them in parallel across three specialized sub-agents instead of sequentially on one.

Scenario 3: Wall-clock time is the bottleneck If you need a 100-item analysis in 10 minutes instead of 100 minutes, parallelism is your only lever. Cost is roughly the same (you pay for total tokens either way); wall-clock time drops by N where N is your fan-out width.


Step-by-Step: Designing a Fan-Out Pipeline

Step 1: Identify the Unit of Work

The smallest indivisible task your pipeline handles. For a codebase security audit: one file. For a content pipeline: one article. For a lead scoring pipeline: one prospect record. Everything else follows from this definition.

Step 2: Define Sub-Agent Input/Output Schemas

The schema contract is the most important design decision. It determines what agents can be swapped out or upgraded independently.

// Input schema for a SecurityScanner sub-agent
interface SecurityScanInput {
  filePath: string;
  fileContent: string;
  stackContext: string;  // "next.js + supabase + stripe"
}

// Output schema — typed contract that orchestrator depends on
interface SecurityScanOutput {
  filePath: string;
  issues: Array<{
    severity: 'critical' | 'high' | 'medium' | 'low';
    type: string;  // e.g., "hardcoded-secret", "missing-input-validation"
    line: number;
    description: string;
    fix: string;
  }>;
  clean: boolean;
}

Step 3: Write the Orchestrator

import Anthropic from '@anthropic-ai/sdk';

const client = new Anthropic();

async function runSecurityAudit(files: FileInput[]): Promise<AuditReport> {
  // Fan out: each file gets its own sub-agent call
  const scanResults = await Promise.all(
    files.map(async (file) => {
      const response = await client.messages.create({
        model: 'claude-sonnet-4-6',
        max_tokens: 2048,
        messages: [{
          role: 'user',
          content: `Scan this file for security issues. Return JSON matching SecurityScanOutput schema.

File: ${file.path}
Stack: Next.js + Supabase + Stripe

${file.content}`
        }]
      });
      return parseSecurityOutput(response.content);
    })
  );

  // Synthesize: one agent merges all results
  const synthesis = await client.messages.create({
    model: 'claude-opus-4-8',
    max_tokens: 4096,
    messages: [{
      role: 'user',
      content: `You are a security report synthesizer. Given these per-file scan results, produce a prioritized remediation plan.

Results: ${JSON.stringify(scanResults)}

Output: executive summary, critical issues first, estimated remediation effort per issue.`
    }]
  });

  return parseSynthesis(synthesis.content);
}

Step 4: Handle Partial Failures

const results = await Promise.allSettled(
  files.map(file => scanFile(file))
);

const successful = results
  .filter((r): r is PromiseFulfilledResult<ScanResult> => r.status === 'fulfilled')
  .map(r => r.value);

const failed = results
  .filter((r): r is PromiseRejectedResult => r.status === 'rejected')
  .map((r, i) => ({ file: files[i].path, error: r.reason.message }));

// Log failures; synthesize from successful results only
console.warn(`Failed: ${failed.length}/${files.length} files`);

Step 5: Cost Estimation Before You Run

function estimateCost(fileCount: number, avgTokensPerFile: number): CostEstimate {
  const sonnetInputCost = 0.003;    // $3 per 1M tokens
  const sonnetOutputCost = 0.015;   // $15 per 1M tokens
  const opusInputCost = 0.015;      // $15 per 1M tokens for synthesis
  const opusOutputCost = 0.075;

  const scanCost = fileCount * avgTokensPerFile * sonnetInputCost / 1_000_000
    + fileCount * 500 * sonnetOutputCost / 1_000_000;  // ~500 output tokens per scan

  const synthesisCost = fileCount * 200 * opusInputCost / 1_000_000  // summaries as input
    + 2000 * opusOutputCost / 1_000_000;  // synthesis output

  return { scanCost, synthesisCost, total: scanCost + synthesisCost };
}

// 500 files × 3K tokens avg → estimate before running
console.log(estimateCost(500, 3000));
// → { scanCost: 0.045, synthesisCost: 0.0015, total: ~$0.05 }

The Cost Math That Makes This Work

Counter-intuitively, fan-out multi-agent pipelines are often cheaper than a single large-context run when:

  1. Haiku or Sonnet handles the work (the specialist sub-agents don't need Opus)
  2. Only the synthesis step uses Opus (one call, not N calls)
  3. Prompt caching applies (system prompts and schemas cached across all sub-agent calls)

For a 1,000-file codebase audit:

  • Single Opus 4.8 run (3M tokens): ~$45
  • Fan-out (Sonnet per file + Opus synthesis): ~$5–8

Emerging Roles at the Orchestration Layer

LLMHire is tracking a sharp uptick in postings for roles that didn't exist 12 months ago:

  • AI Orchestration Engineer: Designs and maintains multi-agent pipeline infrastructure. Median $220K. Requirements: TypeScript/Python, distributed systems, Claude Code SDK, workflow tooling.
  • Agentic Systems Architect: Owns the agent topology, schema contracts, and reliability architecture for production multi-agent systems. Median $240K.
  • Prompt Systems Engineer: Writes and maintains the prompt library that drives specialist sub-agents. Median $180K.

These roles are converging on a shared skill set: async TypeScript/Python, Claude Code or LangGraph, schema design, cost optimization, and production reliability engineering.

Conclusion

Sakana AI's Fugu and Claude Code's Dynamic Workflows are different implementations of the same architectural shift: AI work fans out to specialized parallel agents, then synthesizes up. The economics work because specialist sub-agents run on cheaper models; only synthesis needs your most capable model. The wall-clock speedup is real: tasks that took hours run in minutes when 50–200 agents work in parallel. The implementation pattern is straightforward — define your unit of work, type your schemas, write a simple orchestrator, handle partial failures with Promise.allSettled. Start with 10 files, not 10,000. The architecture scales; start small enough to observe it working. For the complete prompt library covering orchestration design, see Prompt 17.333 — Fan-Out Multi-Agent Pipeline Design in the Vibe Coding Ebook. For roles building this infrastructure, see LLMHire AI Orchestration Engineer listings.

Build Blueprint · Creator

Have an idea? Get the spec your AI agent can build from.

Describe any product and get a complete build blueprint — stack, data model, screens, APIs, and a ready-to-paste prompt for Claude Code or Cursor. Export to PDF.

Open the Blueprint