Skip to main content
A chain of five agents where each reads only the previous agent’s output, never the original prompt. Compare the final output to the starting message to measure how much (or how little) meaning drifted across five hops.

What it demonstrates

  • Long sequential chains and accumulated working.* context
  • Why careful writes: path design matters — each hop is traceable
  • How meaning degrades (or holds) under repeated paraphrase
  • Reusing the same agent definition across multiple nodes

Run it

Compare working.hop_1 through working.hop_4 against output.final in the trace to see drift at each step.

Workflow

docs/cookbook/telephone-game/workflow.yaml

Graph

Next steps

Compression Gauntlet

A chain that halves the text each step — how much can survive?

Sequential Pipeline

The two-node version of this pattern.