1. A coordinator agent delegates document analysis to three sub-agents, and the run fails partway through. To resume without repeating finished work or bloating context, what should the coordinator persist and replay?
B. Each sub-agent's final structured result to a known location; on resume the coordinator reloads those and re-dispatches only the unfinished work. (correct)
Compact per-agent results keep fidelity while letting the coordinator re-dispatch only what is unfinished. This is the orchestrator plus compact-artifact pattern.
Why: Persisting compact, structured results per agent preserves prior findings and lets the coordinator resume only the unfinished work, which balances fidelity against context cost.