Refacto Agents

Industry story

Google's Scion orchestrator runs multi-agent film crews to completion

agent-framework multi-agent orchestration tool-use

Google just turned its own hackathon into a stress test for multi-agent orchestration, and the results are worth studying. Ten Scion crews, each running an Idea Person, Technical Lead, Editor, and supervising Coach, produced 25+ short films and 44 minutes of delivered content by routing work through shared files rather than message chains. That design choice matters: files survive agent crashes and restarts; message context doesn't. The verification gates are what caught a "completed" film that was actually a 94-byte placeholder. Agents reviewed each other's output at those checkpoints, which is the only reason the fake delivery got flagged.

Full analysis

Google Cloud engineers ran an internal hackathon where teams of AI agents collaborated to produce short films using Google's generative media models. Each team had distinct roles: Idea Person, Technical Lead, Editor, and a supervising Coach. Ten crews ran inside Scion, an open-source multi-agent orchestration testbed that lets agents spawn, message each other, and share a filesystem across containerized sandboxes. The experiment produced 25+ productions and about 44 minutes of delivered film, with hundreds of individual agent instances created. Agents called Gemini image generation, Veo 3.1 (video), Lyria 3 (music), and Gemini Flash TTS (voice) through a shared CLI toolkit.

Key findings for agent builders: agents collaborate more reliably through shared files than message history, because files persist across crashes and restarts while message context is lost when agents are killed and restarted. The seven-step pipeline used verification gates, checkpoints where at least one agent checked another's output, catching failure modes like a completed film that turned out to be a 94-byte placeholder file. Scion is model-agnostic: the same agent template ran on Claude, Gemini, or Codex, and agents also self-improved the toolchain during pilot rounds based on human feedback.

Comments