VS Code plugin not responsive #1147
Replies: 4 comments 1 reply
-
|
Further information after some debugging: Kimi CLI is starting normally and responding to initialize / TurnBegin (CLI logs show many successful spawns). However, I authenticated via login. When I try and try the verification url (shown in the logs) I get the following message: [unauthenticated] invalid device authorization code. I don't understand how to reauthenticate. I've tried uninstalling all of the apps, restarting vs code, reinstalling, and relogging in but nothing is working. (Signing out of Kimi Code and logging in via the authorize_device url shows that I can log in successfully, however messages still dont send) |
Beta Was this translation helpful? Give feedback.
-
|
I had a similar stuck "Processing" issue. However mine was down to the Playwright MCP server failing. Removing the MCP solved my issue. |
Beta Was this translation helpful? Give feedback.
-
|
I'm also having similar stuck processing issues. I don't have any MCP server installed on Vscode. |
Beta Was this translation helpful? Give feedback.
-
|
🐛 Bug Report: Kimi Code webview ignores VS Code workbench theme Environment
Problem
Root Cause VS Code injects theme variables into the webview, but Kimi Code reads from unmapped shadcn variables, falling back to a hardcoded color. Workaround (tested and working) File path: PowerShell one-liner (copy-paste into terminal): $path = "$env:USERPROFILE.vscode\extensions\moonshot-ai.kimi-code-0.5.10-win32-x64\dist\webview.js"; $c = Get-Content $path -Raw; $c = $c -replace 'var(--background)','var(--vscode-editor-background)'; $c = $c -replace 'var(--foreground)','var(--vscode-editor-foreground)'; $c = $c -replace 'var(--card)','var(--vscode-editor-background)'; $c = $c -replace 'var(--card-foreground)','var(--vscode-editor-foreground)'; $c = $c -replace 'var(--popover)','var(--vscode-dropdown-background)'; $c = $c -replace 'var(--popover-foreground)','var(--vscode-dropdown-foreground)'; $c = $c -replace 'var(--primary)','var(--vscode-button-background)'; $c = $c -replace 'var(--primary-foreground)','var(--vscode-button-foreground)'; $c = $c -replace 'var(--secondary)','var(--vscode-button-secondaryBackground)'; $c = $c -replace 'var(--secondary-foreground)','var(--vscode-button-secondaryForeground)'; $c = $c -replace 'var(--muted)','var(--vscode-input-background)'; $c = $c -replace 'var(--muted-foreground)','var(--vscode-input-placeholderForeground)'; $c = $c -replace 'var(--accent)','var(--vscode-list-activeSelectionBackground)'; $c = $c -replace 'var(--accent-foreground)','var(--vscode-list-activeSelectionForeground)'; $c = $c -replace 'var(--destructive)','var(--vscode-errorForeground)'; $c = $c -replace 'var(--border)','var(--vscode-panel-border)'; $c = $c -replace 'var(--input)','var(--vscode-input-background)'; $c = $c -replace 'var(--ring)','var(--vscode-focusBorder)'; Set-Content $path $c -NoNewline; Write-Host "PATCH APPLICATO. Reload window." -ForegroundColor Green Then: Ctrl+Shift+P -> Developer: Reload Window Result Notes
Suggested Fix for Moonshot Variable Mapping Table |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
What version of Kimi Code CLI is running?
server=Kimi Code CLI/1.11.0
Which open platform/subscription were you using?
Visual Studio Code
Which model were you using?
kimi-for-coding
What platform is your computer?
Darwin 25.2.0 arm64 arm
What issue are you seeing?
I'm using this plugin: moonshot-ai.kimi-code / https://marketplace.visualstudio.com/items?itemName=moonshot-ai.kimi-code
However, the chat isn't responsive to any inquiry or input. It gets stuck on Processing. I've tried re-installing the plugin, logging in and out, and resetting kimi
Note:
What steps can reproduce the bug?
What is the expected behavior?
Kimi responds with something
Additional information
No response
Beta Was this translation helpful? Give feedback.
All reactions