"The conversation is where a plan is born. It is the worst possible place to keep the plan alive."
Author in chat, store in the operation
A conversation is a wonderful place to design an operation — to argue about scope, weigh risk, decide the order. It is a terrible place to hold the operation's live state. The moment the tab closes or the session ends, a plan that lived only in the chat is gone. So the chat authors; the durable operation store remembers.
Delegation carries an ID, not a context dump
When a long or disconnect-sensitive job needs another Pippa to run it, you don't paste the whole fleet situation into a new agent. You hand over a small contract: the operation ID, the rules, the tool entry point, and the escalation condition. The delegate reads current state through that ID, from the single durable record — it never works from a snapshot you copied.
Why the paste is a trap
A pasted fleet snapshot is stale the instant it lands, and worse, it forks the truth: now the durable store says one thing and the pasted context says another, and they drift apart with every passing minute. An ID can't drift. It's a pointer to the one record everyone shares, so everyone is always looking at the same current reality.
Any Pippa can pick it up
Because the state lives in the store, the roles compose cleanly: WebUI Pippa can watch progress, a delegated Claude or Codex session can execute and append events, and Dad can observe — all against the same operation, none of them owning a private copy of the truth. The conversation was the pen; the operation is the paper.