# Claude Desktop Bridge — VSCode Extension Ermöglicht Claude Desktop, VSCodium/VSCode zu steuern — ohne Maus-Simulation. ## Installation (Entwicklung) ```bash cd vscode-extension npm install npm run compile ``` Dann in VSCodium: - `F5` für Extension Development Host, oder - `vsce package` → `.vsix` → Installieren ## Features - WebSocket-Server auf Port 7890 (konfigurierbar) - Commands: openFile, goToLine, formatDocument, findInFiles, openTerminal, getStatus, executeCommand - Status-Bar-Anzeige des Verbindungsstatus ## Protokoll Request: ```json { "id": "uuid", "command": "openFile", "args": { "path": "/path/to/file" } } ``` Response: ```json { "id": "uuid", "result": { "opened": "/path/to/file" } } ``` ## Sicherheit Server lauscht nur auf `127.0.0.1` — kein Zugriff von außen.