Skip to content

Quick Start

Terminal window
kodacode

The home view shows your current agent, model, project directory, git branch, and recent sessions.

Terminal window
kodacode --resume
# or
kodacode -r

If you prefer to always resume your last session, set auto_resume in your config:

tui:
auto_resume: true

Type a message and press Enter to send. Use Shift+Enter for multi-line input.

> Explain the architecture of this project

KodaCode will read your codebase, search for relevant files, and respond with a detailed explanation — all visible in real-time as tools execute.

Press Ctrl+P to open the command palette — a fuzzy finder across files, symbols, sessions, and commands. Type to filter, arrow keys to navigate, Enter to select.

  • Select a file to attach it as context to your next message
  • Type @ to search symbols across your workspace via LSP
  • Type # to search sessions by name
  • Type / to search commands

Type / in the input to open the fuzzy command menu. Key commands:

CommandDescription
/agentsSwitch between agents
/modelsSwitch AI model
/newStart a new session
/sessionsBrowse session history
/attachAttach a file to your message
/costShow token usage and costs
/rememberSave a project memory
/pinPin instruction that survives compaction
/variantCycle thinking budget (low/high/max)
/diffShow current branch diff
/undoRevert last file change
/exportExport session as markdown

The model automatically delegates to specialized agents when the task fits:

  • explorer — fast, read-only codebase research
  • planner — structured implementation plans
  • polish — detects and removes AI-generated code artifacts
  • refactor — restructures code with automated validation
  • insight — extracts learnings and persists them

You can also invoke them directly: /explorer how does authentication work?

KeyAction
Ctrl+POpen command palette
EnterSend message
Shift+EnterNew line
EscCancel stream / close dialog / deselect
TabCycle agents
Ctrl+YPaste from clipboard
Page Up/DownScroll
ClickExpand/collapse tool blocks