packages/kilo-docs/pages/getting-started/quickstart.md
After you set up Kilo Code, follow the guide for your platform below.
{% tabs %} {% tab label="VSCode" %}
Click the Kilo Code icon in the VS Code Primary Side Bar to open the chat panel. If you don't see the icon, verify the extension is installed.
Type a clear, concise description of what you want Kilo Code to do in the chat box. The same examples work here:
hello.txt containing 'Hello, world!'."No special commands or syntax needed—just use plain English.
Press Enter to send.
Kilo Code analyzes your request and proposes actions. By default, most tools are auto-approved — only shell commands, external directory access, and sensitive file reads will prompt for confirmation. You'll see the tool name, arguments, and can approve or reject each action.
To change which actions require approval, open Settings (gear icon) and go to the Auto-Approve tab. You can set each tool to Allow, Ask, or Deny. See Auto-Approving Actions for details.
Kilo Code works iteratively. Continue giving feedback or follow-up instructions until your task is complete.
kilo.jsonc config files (the Settings webview reads and writes the same files).md files or via the agent config key{% /tab %} {% tab label="CLI" %}
Navigate to your project directory:
cd /path/to/your/project
Run the kilo command to start the interactive TUI (terminal user interface):
kilo
If this is your first time, run kilo auth login first to authenticate (see Setup & Authentication).
Type your request in natural language at the prompt. The same examples work here:
hello.txt containing 'Hello, world!'."Press Enter to send.
Kilo analyzes your request and proposes actions. By default, most tools are auto-approved — only shell commands, external directory access, and sensitive file reads will prompt for confirmation. You'll see the tool name, arguments, and can approve or reject each action.
To change permission defaults, configure the permission key in your kilo.jsonc config file. See Auto-Approving Actions for details.
Kilo works iteratively. Continue giving feedback or follow-up instructions until your task is complete.
For quick, non-interactive tasks, use kilo run:
kilo run "add error handling to src/api.ts"
Add --auto to auto-approve all permissions (use carefully):
kilo run --auto "fix the failing tests in test/auth.test.ts"
{% /tab %} {% /tabs %}
You've completed your first task. Along the way you learned:
Ready for more? Here are some next steps:
{% callout type="tip" %} Accelerate development: Check out multiple copies of your repository and run Kilo Code on all of them in parallel (using git to resolve any conflicts, same as with human devs). This can dramatically speed up development on large projects. {% /callout %}