* fix(win-e2e): survive the agent-CLI feature-wall modal in harness driving
The modal renders off an async capability check and can be up at (or appear
right after) the harness's first interaction, swallowing every click until
closed — both crash-survival attempts on #9446 timed out exactly there, while
the app itself was healthy. Add its 'Close' button to the overlay dismiss
list, dismiss overlays before ensureTerminal's first probe, and retry the
first New-workspace click through a dismissal pass instead of hanging the
full 60s.
* fix(win-e2e): scope modal dismissal and bound retries
* fix(win-e2e): keep overlay retries inside composer
* fix(win-e2e): seed blank terminal selection
* fix(win-e2e): avoid input during terminal restore
* fix(win-e2e): bound whole create path by caller timeout
createWorkspaceFromSeededRepo gave the composer wait and create-button retry
fresh fixed 15s windows, so the create path could overrun the caller's
timeoutMs. Thread one shared deadline through every step and cover a fast
first click followed by a blocked submission.