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 — checkpoints where agents reviewed each other's output — are what caught a "completed" film that was actually a 94-byte placeholder.

Analysis

Showing the shorter version.

Google Cloud engineers ran an internal hackathon where teams of AI agents collaborated to produce short films using Google's own generative media models. The experiment, hosted inside a system called Scion, delivered over 44 minutes of finished film across 25+ productions, with hundreds of individual agent instances created along the way.

How it worked

Each film crew had four agent roles: Idea Person, Technical Lead, Editor, and a supervising Coach. Ten crews ran in parallel inside Scion, an open-source orchestration framework that lets agents spawn sub-agents, pass messages, and share a filesystem across isolated container sandboxes. Agents called Google's Gemini image generation, Veo 3.1 (video), Lyria 3 (music), and Gemini Flash TTS (text-to-speech) through a shared command-line toolkit.

What actually worked and why

The most concrete finding: agents collaborate more reliably through shared files than through message history. When an agent crashes and restarts, its message context is gone — but files written to a shared filesystem persist. This made file-based handoffs between agents more durable in practice.

The pipeline also ran seven-step verification gates — checkpoints where one agent checked another's output before the workflow continued. This caught at least one meaningful failure: a "completed" film that turned out to be a 94-byte placeholder file rather than actual video.

Scion is model-agnostic. The same agent template ran on Claude, Gemini, or Codex interchangeably. Agents also rewrote parts of their own shared toolchain during pilot rounds based on human feedback, improving the system mid-experiment.

The broader significance

This is one of the first documented cases of a multi-agent system running a creative production pipeline to genuine completion at scale — not a demo, but dozens of finished outputs. The durability advantage of filesystem-based state over in-memory message context is a transferable architectural lesson for anyone building long-running agent workflows, regardless of the underlying model or domain.

Comments