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
VS Code 1.132 added the Agents Window, opened on the desktop with `code
--agents`. Its workbench lives in `vs/sessions`, which Code only bundles
into its vscode-web build, not into the vscode-reh-web server build we
package, so there is no Agents Window for us to serve yet.
The agent host that runs agent sessions is in the server build, though.
Code spawns it only when told where it should listen, and registers the
channel the browser uses to reach it over the remote connection at the
same time. Without a path that channel is registered as unavailable, so
agent sessions cannot connect at all today.
`--agents` supplies that path, pointing the agent host at a socket in the
user data directory (a named pipe on Windows). Agent sessions then work
in the regular chat UI. Code never unlinks the socket, so a leftover one
from a killed instance is removed before startup.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
0 commit comments