What problem does it solve? Validating web-only changes to the VS Code workbench normally requires shipping an Insiders build. This Skill lets you serve the workbench or Agents window directly from local microsoft/vscode sources through the vscode-dev server, with browser-driven interaction and a mock agent host for offline testing. ## Core Features & Use Cases - Local dev server startup: Runs npm run dev from the vscode-dev folder and verifies readiness via the HTTPS endpoint on port 3000. - Browser automation guidance: Covers chat input behavior, service worker cache clearing after rebuilds, and mobile emulation via CDP overrides. - Mock agent host for the Agents window: Launches agentHostServerMain.js with --enable-mock-agent and connects via the mock-agent-host URL parameter, bypassing GitHub auth entirely. - Use Case: You edited a chat UI component in the vscode repo and want to verify it in the web workbench. Start the dev server, open https://127.0.0.1:3000/?vscode-quality=dev, clear the service worker cache, and interact with the updated UI in the integrated browser. ## Quick Start Start the vscode.dev dev server from the vscode-dev folder and open the local workbench at https://127.0.0.1:3000/?vscode-quality=dev to test my changes.