export type Terminal = | { reason: 'completed' } | { reason: 'blocking_limit' } | { reason: 'image_error' } | { reason: 'model_error'; error?: unknown } | { reason: 'aborted_streaming' } | { reason: 'aborted_tools' } | { reason: 'prompt_too_long' } | { reason: 'stop_hook_prevented' } | { reason: 'hook_stopped' } | { reason: 'max_turns'; turnCount: number } export type Continue = | { reason: 'collapse_drain_retry'; committed: number } | { reason: 'reactive_compact_retry' } | { reason: 'max_output_tokens_escalate' } | { reason: 'max_output_tokens_recovery'; attempt: number } | { reason: 'stop_hook_blocking' } | { reason: 'token_budget_continuation' } | { reason: 'missing_tool_use_recovery' kind: 'costrict_task' | 'task' | 'generic' } | { reason: 'next_turn' }