VS Code Extension

Use the Kimchi VS Code extension for an editor-integrated coding experience — side panel chat, streaming responses, multi-model support, and agentic tool use.

The Kimchi VS Code extension brings the full Kimchi Coding experience into your editor as a side panel. It uses the same harness that powers the terminal CLI — model orchestration, tool use, and session management — with an editor-native UI on top.

The extension runs the Kimchi CLI in the background. Most of what you can do in the terminal works from the side panel — though some CLI features like Ferment and /compact are not yet available in the extension.

Prerequisites

  • Kimchi CLI installed and authenticated. The extension spawns the CLI process in the background, so a working kimchi login is required. See the Quickstart if you haven't set it up yet.

Getting started

Features

Side panel chat

The Kimchi panel lives in the activity bar, always one click away. Unlike terminal-based workflows, where the agent runs in a separate window, the panel sits alongside your editor — you can read agent output and your code side by side without switching contexts.

Streaming responses

Output streams tokens as the agent works, so you can see its reasoning and code in real time. If you've used the Kimchi CLI, this is the same streaming experience — just rendered in the editor instead of the terminal.


Multi-model support

A dropdown at the bottom of the panel lets you switch models mid-session. Select a specific model for a targeted task, or choose Multi-Model to let the harness route subtasks automatically—the same orchestration you get in the CLI's default mode.


Mode switching

Switch between agent modes — plan, default, auto, or YOLO — without restarting your session. If you're coming from the CLI, these are the same modes you'd set with --plan or /permissions — here they're accessible from the UI.

Agentic tool use

The agent reads and writes files, runs shell commands, lists directories, and searches your workspace — the full tool set of the Kimchi harness. Edits apply directly to your workspace files, so VS Code's diff view, git integration, and undo history all work as expected.

Tool approval

Control how much autonomy the agent has over tool calls. Choose between approve all (every action requires confirmation), write only (reads run automatically, writes prompt), or auto (safe operations run freely, destructive ones prompt). This is the same gating model as the CLI's permission modes, surfaced as a panel control.

Tabbed conversations

Run multiple conversations in parallel, each in its own tab. Conversations persist across VS Code restarts, and you can rename or delete them from the tab bar. This is useful when you're working on several tasks at once — one tab for a refactor, another for writing tests, a third for exploring an unfamiliar module.

File attachments and mentions

Attach a file or your current editor selection to any message — the agent receives the full content as context. You can also reference files inline with @ mentions, similar to how you'd use @/path/to/file in the CLI. Both approaches give the agent targeted context without you needing to describe what to look at.

Choice prompts

When the agent needs clarification — for example, choosing between two approaches to a refactor — it presents clickable options directly in the chat. Instead of typing your answer, you click the option you want. This replaces the numbered-choice flow you'd see in the CLI's terminal UI.

Rich output

Agent responses render with full Markdown support — code blocks with syntax highlighting, tables, task lists, headings, and horizontal rules. Code blocks include Copy and Insert actions: copy sends the snippet to your clipboard, and insert places it directly into your active editor at the cursor position.

Configuration

The extension works out of the box with no additional configuration. For advanced use cases, you can customize the executable path, environment variables, and debug logging.

Config file

The extension reads its configuration from ~/.config/kimchi/vscode/config.json (macOS/Linux), created automatically on first run. To locate the file on any platform, run Kimchi: Open Configuration from the Command Palette. You can optionally configure the executable path and environment variables:

{
  "kimchi": {
    "env": {
      "KIMCHI_TAGS": "team:your-team",
      "KIMCHI_PERMISSIONS": "default"
    },
    "executablePath": "$HOME/.local/bin/kimchi"
  }
}

To use a config file in a different location, set the kimchi.configPath VS Code setting.

VS Code settings

SettingTypeDefaultDescription
kimchi.configPathstring""Absolute path to the Kimchi JSON config file. If empty, uses ~/.config/kimchi/vscode/config.json.

Config file fields

FieldTypeDescription
kimchi.argsobjectExtra command-line arguments passed to the Kimchi process (e.g. {"--tag": "team:backend"}).
kimchi.envobjectExtra environment variables for the Kimchi process (e.g. KIMCHI_TAGS).
kimchi.executablePathstringOptional path to the kimchi executable (supports $HOME expansion).
debugbooleanEnable debug logging (default false). Raw responses go to the Kimchi output channel.

Commands

Open the Command Palette (Cmd/Ctrl+Shift+P) and search for Kimchi:

CommandAction
Kimchi: Focus ChatFocus the Kimchi side panel
Kimchi: New ChatStart a new conversation
Kimchi: Open Chat ListShow the conversation list
Kimchi: Open ConfigurationOpen the config file in the editor
Kimchi: Attach File to ChatAttach a file from the Explorer or editor
Kimchi: Attach Selection to ChatAttach the active editor selection
Kimchi: Next TabSwitch to the next conversation tab
Kimchi: Previous TabSwitch to the previous conversation tab

Keyboard shortcuts

ShortcutAction
Cmd/Ctrl+Shift+KNew chat
Ctrl+TabNext conversation tab
Ctrl+Shift+TabPrevious conversation tab
EnterSend message
Shift+EnterNew line

Feedback & issues

Click Report bug from the actions dropdown in the side panel, use the /bug command, or file issues at github.com/getkimchi/kimchi.

See also


Did this page help you?