Kilo Code for VS Code
Kilo Code is available as two VS Code extensions: the VSCode (Legacy) extension and the current VSCode version built on Kilo's shared agent runtime.
Installation
- Open VS Code
- Go to Extensions (
Ctrl+Shift+X/Cmd+Shift+X) - Search for "Kilo Code"
- Click the dropdown arrow next to Install and select Install Pre-Release Version
The extension includes its own embedded runtime. No separate Kilo CLI installation is required.
Key Features
Key features include:
- SolidJS-based UI — Rebuilt sidebar with a modern component architecture
- JSONC config files — Portable settings in
kilo.jsoncinstead of VS Code settings - Granular permissions — Per-tool permission rules with glob patterns
- Agents — Customizable agents (
.kilo/agents/*.md) replacing the modes system - Agent Manager — Enhanced with diff panel, multi-model comparison, PR import, and code review annotations
- Autocomplete — FIM-based with Codestral, status bar cost tracking
- Workflows — Repeatable prompt templates as
.mdfiles - Skills — Load specialized domain knowledge from SKILL.md files
- Custom Subagents — Define specialized sub-agents for the
tasktool - Open in Tab — Pop the chat out into a full editor tab
- Transcript export: Save complete local session transcripts as Markdown files
- Sub-Agent Viewer — Read-only panels for viewing child agent sessions
- Legacy Migration — Automatic migration wizard for VSCode extension settings
Shared Settings
Settings apply across extension surfaces, including the sidebar and Agent Manager. The standalone CLI uses the same ~/.config/kilo/kilo.jsonc (global) and ./kilo.jsonc (project) files when used directly.
Proxy and Certificate Troubleshooting
Kilo Code for VS Code starts its embedded runtime from the extension and applies the relevant VS Code network settings to that runtime. On managed networks, configure proxy and certificate trust in VS Code settings rather than in a separate CLI install.
Use these settings when your organization requires a proxy or inspects HTTPS traffic:
- Set
http.proxyto your organization proxy URL. - Use
http.noProxyfor hosts that should bypass the proxy. - Leave
http.proxySupportenabled unless you intentionally want VS Code and Kilo Code to ignore proxy settings. - Install your organization's root certificate authority in the operating system trust store when HTTPS inspection is in use.
- If the operating system trust store is not enough, set
kilo-code.new.extraCaCertsto the absolute path of a PEM file that contains the additional certificate authority certificates. - Keep
http.proxyStrictSSLenabled whenever possible. Disable it only as a temporary troubleshooting step or when your administrator explicitly requires it, because it disables TLS certificate verification for this path.
Example user or workspace settings:
{
"http.proxy": "http://proxy.example.com:8080",
"http.noProxy": ["localhost", "127.0.0.1", ".example.internal"],
"kilo-code.new.extraCaCerts": "/absolute/path/to/corporate-ca.pem"
}