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.Documentation Index
Fetch the complete documentation index at: https://docs.sirenspec.dev/llms.txt
Use this file to discover all available pages before exploring further.
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
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.