Desktop used a rendered streaming prop to decide whether a composer submit started a root turn or steered the active turn. Immediately after the first send completed its IPC round trip, the Runtime Host could already own an active turn while React had not rendered the new streaming value yet. A second submit in that interval entered the root-turn path and could fail with session_busy. Multiple burst submissions also produced duplicate error toasts.
Runtime Host already owns the durable message semantics:
current_turn queues steering for the next provider boundary.next_turn queues one successor turn per accepted message.Shift+Enter steers the draft into the active turn once.turn.message.submit, queue.entry.promote, queue.entry.retract, queue.entries.reorder); the renderer mirrors the authoritative projection.Submission routing reads the synchronous live-turn ref and the latest session catalog snapshot at the instant of submission. It does not rely only on the previous React render.
Per-entry queue mutation is limited to reorder, promote-to-steering, and retract-to-draft. Editing a queued entry in place, pausing the queue, and cross-session moves still require separate Runtime Host protocol and durability review.