Can't use any Agent!

Where does the bug appear (feature/product)?

Background Agent (GitHub, Slack, Web, Linear)

Describe the Bug

Request ID: 9d09cfc1-ef25-4015-a76a-6faa240a90cb
{“error”:“ERROR_EXTENSION_HOST_TIMEOUT”,“details”:{“title”:“Agent Execution Timed Out”,“detail”:“The agent execution provider did not respond in time. This may indicate the extension host is not running or is unresponsive.”,“isRetryable”:false,“shouldShowImmediateError”:true,“additionalInfo”:{},“buttons”:[{“label”:“Reload Window”,“reloadWindow”:{}}],“planChoices”:}}
Agent Execution Timed Out [deadline_exceeded]
ConnectError: [deadline_exceeded] Agent Execution Timed Out
at zlb (vscode-file://vscode-app/c:/Users/Tyros/AppData/Local/Programs/cursor/resources/app/out/vs/workbench/workbench.desktop.main.js:38281:25776)
at ufd.waitForProviderRegistration (vscode-file://vscode-app/c:/Users/Tyros/AppData/Local/Programs/cursor/resources/app/out/vs/workbench/workbench.desktop.main.js:38281:28797)
at async zkd._waitForPushRequestContextProviderRegistration (vscode-file://vscode-app/c:/Users/Tyros/AppData/Local/Programs/cursor/resources/app/out/vs/workbench/workbench.desktop.main.js:41286:4043)
at async zkd.streamFromAgentBackend (vscode-file://vscode-app/c:/Users/Tyros/AppData/Local/Programs/cursor/resources/app/out/vs/workbench/workbench.desktop.main.js:41286:7541)
at async zkd.getAgentStreamResponse (vscode-file://vscode-app/c:/Users/Tyros/AppData/Local/Programs/cursor/resources/app/out/vs/workbench/workbench.desktop.main.js:41286:18486)
at async B3e.submitChatMaybeAbortCurrent (vscode-file://vscode-app/c:/Users/Tyros/AppData/Local/Programs/cursor/resources/app/out/vs/workbench/workbench.desktop.main.js:29014:16809)
at async Object.Ma [as onSubmit] (vscode-file://vscode-app/c:/Users/Tyros/AppData/Local/Programs/cursor/resources/app/out/vs/workbench/workbench.desktop.main.js:40269:4230)
at async vscode-file://vscode-app/c:/Users/Tyros/AppData/Local/Programs/cursor/resources/app/out/vs/workbench/workbench.desktop.main.js:40268:101038

Steps to Reproduce

I don’t know

Expected Behavior

I don’t know

Screenshots / Screen Recordings

Operating System

Windows 10/11

Version Information

Version: 3.1.15 (user setup)
VSCode Version: 1.105.1
Commit: 3a67af7b780e0bfc8d32aefa96b8ff1cb8817f80
Date: 2026-04-15T01:46:06.515Z
Layout: editor
Build Type: Stable
Release Track: Default
Electron: 39.8.1
Chromium: 142.0.7444.265
Node.js: 22.22.1
V8: 14.2.231.22-electron.0
OS: Windows_NT x64 10.0.26200

For AI issues: which model did you use?

All

For AI issues: add Request ID with privacy disabled

Request ID: 9d09cfc1-ef25-4015-a76a-6faa240a90cb
{“error”:“ERROR_EXTENSION_HOST_TIMEOUT”,“details”:{“title”:“Agent Execution Timed Out”,“detail”:“The agent execution provider did not respond in time. This may indicate the extension host is not running or is unresponsive.”,“isRetryable”:false,“shouldShowImmediateError”:true,“additionalInfo”:{},“buttons”:[{“label”:“Reload Window”,“reloadWindow”:{}}],“planChoices”:}}
Agent Execution Timed Out [deadline_exceeded]
ConnectError: [deadline_exceeded] Agent Execution Timed Out
at zlb (vscode-file://vscode-app/c:/Users/Tyros/AppData/Local/Programs/cursor/resources/app/out/vs/workbench/workbench.desktop.main.js:38281:25776)
at ufd.waitForProviderRegistration (vscode-file://vscode-app/c:/Users/Tyros/AppData/Local/Programs/cursor/resources/app/out/vs/workbench/workbench.desktop.main.js:38281:28797)
at async zkd._waitForPushRequestContextProviderRegistration (vscode-file://vscode-app/c:/Users/Tyros/AppData/Local/Programs/cursor/resources/app/out/vs/workbench/workbench.desktop.main.js:41286:4043)
at async zkd.streamFromAgentBackend (vscode-file://vscode-app/c:/Users/Tyros/AppData/Local/Programs/cursor/resources/app/out/vs/workbench/workbench.desktop.main.js:41286:7541)
at async zkd.getAgentStreamResponse (vscode-file://vscode-app/c:/Users/Tyros/AppData/Local/Programs/cursor/resources/app/out/vs/workbench/workbench.desktop.main.js:41286:18486)
at async B3e.submitChatMaybeAbortCurrent (vscode-file://vscode-app/c:/Users/Tyros/AppData/Local/Programs/cursor/resources/app/out/vs/workbench/workbench.desktop.main.js:29014:16809)
at async Object.Ma [as onSubmit] (vscode-file://vscode-app/c:/Users/Tyros/AppData/Local/Programs/cursor/resources/app/out/vs/workbench/workbench.desktop.main.js:40269:4230)
at async vscode-file://vscode-app/c:/Users/Tyros/AppData/Local/Programs/cursor/resources/app/out/vs/workbench/workbench.desktop.main.js:40268:101038

Additional Information

I reinstall OS, but it is same

Does this stop you from using Cursor

Yes - Cursor is unusable

Hey, this is a known bug with extension host initialization on Windows, reinstalling the OS won’t help since the installer creates a dist/ folder without out/ in the cursor-socket extension.

Open PowerShell as admin and check the folder contents:

dir "$env:LOCALAPPDATA\Programs\cursor\resources\app\extensions\cursor-socket"

If you see dist\ but there’s no out\, create a symlink:

cd "$env:LOCALAPPDATA\Programs\cursor\resources\app\extensions\cursor-socket"
New-Item -ItemType SymbolicLink -Name "out" -Target "dist"

Restart Cursor.

If the symlink didn’t help, try enabling HTTP/1.1 in Cursor Settings > Network. The team is aware of the bug, there’s no ETA for a fix yet. Let me know if this worked.