You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(vscode): apply /yolo and /auto while a turn is running
Typing /yolo mid-turn did nothing: the webview queues every input while
streaming, and a queued command cannot run because the turn is parked on
the approval prompt the user is trying to switch off. Even unqueued, the
host framed the command as a turn and beginHostAction rejects it as busy.
Permission commands now take a control path — a dedicated bridge method
that changes the mode without turn framing, mirroring the CLI, where both
commands are available while streaming. Flipping to yolo or auto also
answers the approvals already on screen, since the engine asked for them
before the mode changed.
setPermissionMode no longer short-circuits on the cached mode; it always
reconciles with the engine, so a drifted cache cannot silently report the
mode as already set.
0 commit comments