Mark IJbema 79210512d5 fix: About tab width — remove align-items:center from .container
The .container class in KiloProvider.ts had align-items: center which
horizontally centers flex children in a column layout. This caused all
tab content to shrink to intrinsic width instead of stretching to fill
the available space. The About tab was most visibly affected because its
content (short labels like 'Status:', 'Port:') is intrinsically narrow,
while placeholder tabs with long paragraphs masked the issue.

Changes:
- KiloProvider.ts: Remove align-items/justify-content from .container,
  add height: 100vh so Settings fills the sidebar panel
- AboutKiloCodeTab.tsx: Remove redundant width: 100% from outer div,
  match the plain <div> pattern used by all other tabs
2026-02-09 11:29:57 +01:00
2026-02-05 09:50:16 -03:00
2026-02-05 09:45:17 -03:00
2026-01-30 12:19:36 -05:00
2025-11-06 13:03:12 -05:00
2026-02-04 17:06:38 -03:00
2026-01-22 07:34:44 -06:00
2026-01-13 18:27:28 +00:00
2025-06-29 21:12:58 -04:00
2026-02-02 18:32:22 -03:00
2026-02-05 10:36:30 +01:00
2026-02-04 17:06:38 -03:00
2026-02-04 13:26:22 -03:00
2026-01-01 17:54:11 -05:00
2026-01-21 22:10:55 -06:00
2026-02-04 17:06:38 -03:00
2026-01-28 15:05:42 +01:00
2026-02-03 21:22:33 +00:00
2026-01-30 12:19:36 -05:00
2025-12-23 12:58:28 -05:00
2025-09-27 04:10:56 -04:00
2026-01-31 06:42:47 -06:00

Kilo CLI logo

The open source AI coding agent.

Discord X Reddit


Installation

# npm
npm install -g @kilocode/cli

# Or run directly with npx
npx @kilocode/cli

Then run kilo in any project directory to start.

Agents

Kilo CLI includes two built-in agents you can switch between using the Tab key:

  • build - Default, full access agent for development work
  • plan - Read-only agent for analysis and code exploration
    • Denies file edits by default
    • Asks permission before running bash commands
    • Ideal for exploring unfamiliar codebases or planning changes

Also included is a general subagent for complex searches and multi-step tasks. This is used internally and can be invoked using @general in messages.

Autonomous Mode (CI/CD)

Use the --auto flag with kilo run to enable fully autonomous operation without user interaction. This is ideal for CI/CD pipelines and automated workflows:

kilo run --auto "run tests and fix any failures"

Important: The --auto flag disables all permission prompts and allows the agent to execute any action without confirmation. Only use this in trusted environments like CI/CD pipelines.

Migrating from Kilo Code Extension

If you're coming from the Kilo Code VS Code extension, your configurations are automatically migrated:

Kilo Code Feature Kilo CLI Equivalent
Custom modes Converted to agents
Rules (.kilocoderules, .kilocode/rules/) Added to instructions array
Skills (.kilocode/skills/) Auto-discovered alongside .opencode/skill/
Workflows (.kilocode/workflows/) Converted to commands
MCP servers Migrated to mcp config

Default mode mappings:

  • codebuild agent
  • architectplan agent

For detailed migration information, see:

Documentation

For more info on how to configure Kilo CLI, head over to our docs.

Contributing

If you're interested in contributing, please read our contributing docs before submitting a pull request.

FAQ

Where did Kilo CLI come from?

Kilo CLI is a fork of OpenCode, enhanced to work within the Kilo agentic engineering platform.


Join our community Discord | X.com | Reddit

S
Description
No description provided
Readme 334 MiB
Languages
TypeScript 88.6%
JavaScript 7%
CSS 3%
Rust 0.6%
Tree-sitter Query 0.4%
Other 0.3%