Kilo is the all-in-one agentic engineering platform. Build, ship, and iterate faster with the most popular open source coding agent. #1 on OpenRouter. 750k+ Kilo Coders. 6.1 trillion tokens/month. https://kilo.ai/

Kevin van Dijk cf6c3c63e4 Optimize image sizes 10 месяцев назад
.changeset 1cfea974c8 Replace naming and turn off announcement for now (#6) 11 месяцев назад
.github fc82680898 Fix workflow file (#75) 10 месяцев назад
.husky 87b9b72b32 Corrected bug in openrouter.ts and pre-commit and pre-push husky scripts (#1853) 10 месяцев назад
.vscode b54f913d0e Merge remote-tracking branch 'upstream/main' into update-upstream 10 месяцев назад
assets e38aca4c34 Merge branch 'upstream-v3.10.3' into update-upstream 10 месяцев назад
audio 4b74f290d4 Play sound effects for notifications and events (#38) 1 год назад
benchmark 4c1e8dcd8e Rename values for Kilo Code 10 месяцев назад
cline_docs 60a0a824b9 Prettier backfill 1 год назад
e2e 612ef8b486 Merge remote-tracking branch 'upstream/main' into update-from-upstream 11 месяцев назад
scripts b54f913d0e Merge remote-tracking branch 'upstream/main' into update-upstream 10 месяцев назад
src b0be2ee35e Add a walkthrough (a "welcome" screen that appears after people install the extension) 10 месяцев назад
walkthrough cf6c3c63e4 Optimize image sizes 10 месяцев назад
webview-ui ff03266baf add a paperclip-like icon in the text area (#77) 10 месяцев назад
.clinerules 980479e4f1 Update .clinerules 11 месяцев назад
.dockerignore f108dfaeb8 Evals 11 месяцев назад
.env.sample 9f40c4d57a App tab layout fixes 11 месяцев назад
.eslintrc.json f8a592aac9 Rename ClineAPI to RooCodeAPI and improve types 11 месяцев назад
.git-blame-ignore-revs 05d31c2ec1 Renaming (#1) 11 месяцев назад
.gitattributes cc96efc271 Add new demo 1 год назад
.gitconfig b158f379eb Set up ignoring revisions for git blame 1 год назад
.gitignore 612ef8b486 Merge remote-tracking branch 'upstream/main' into update-from-upstream 11 месяцев назад
.kilocodemodes ff8ec5279e Use a .kilocodemodes file to prevent conflicts with other extensions (#44) 11 месяцев назад
.npmrc e77e39b4b5 Adding basic npmrc file to avoid code artifact issues 1 год назад
.nvmrc 70a5d2b48c Require node v20 everywhere (#922) 11 месяцев назад
.prettierignore 93e70c62f1 Chore: Prettier for consistant formatting (#794) 1 год назад
.prettierrc.json 93e70c62f1 Chore: Prettier for consistant formatting (#794) 1 год назад
.rooignore 50f76584bc Add telemetry and privacy policy 11 месяцев назад
.vscodeignore e38aca4c34 Merge branch 'upstream-v3.10.3' into update-upstream 10 месяцев назад
LICENSE 515b34f313 Add proper License and attribution for Roo Code and Cline (#50) 11 месяцев назад
NOTICE 515b34f313 Add proper License and attribution for Roo Code and Cline (#50) 11 месяцев назад
PRIVACY.md 38e45ca450 More rename (#5) 11 месяцев назад
README.md afc8f31cea Use outline logo for Market Place (#61) 11 месяцев назад
ellipsis.yaml d6d43b24f4 Revert "Turn off ellipsis quiet mode" 11 месяцев назад
esbuild.js 38655825d4 Extension-side internationalization (#1757) 11 месяцев назад
flake.lock 85d1d4a77b Run integration tests in CI 1 год назад
flake.nix 4c1e8dcd8e Rename values for Kilo Code 10 месяцев назад
jest.config.js 4cf7754e65 Strip BOM when applying diffs 11 месяцев назад
knip.json f108dfaeb8 Evals 11 месяцев назад
package-lock.json 95f095d0e7 Bump version to v4.6.0 10 месяцев назад
package.json 9629dbe79e fixing typos for the walkthrough 10 месяцев назад
tsconfig.json 5aa2634253 GHA fixes 1 год назад

README.md

<img width="120" src="assets/icons/logo-outline-black.png" alt="Kilo Code logo">

Download on VS Code Marketplace

Join Reddit Join Discord

Kilo Code


Kilo Code is an open-source AI agent extension for Visual Studio Code. It helps you write code more efficiently by generating code, automating tasks, and providing suggestions.

Kilo Code has a free tier with $15 worth of Claude 3.7 Sonnet tokens. We'll give out more free tokens if you leave useful feedback.

Key Features

  • AI-Powered Code Generation: Generate code from natural language descriptions.
  • Automated Refactoring: Refactor and improve existing code.
  • Intelligent Code Completion: Get smart suggestions as you type.
  • Task Automation: Automate repetitive coding tasks.

Get Started in 2 Minutes

  1. Install the Kilo Code extension from the VS Code Marketplace.
  2. Log in with your Google Account to get $15 in free Claude 3.7 Sonnet credits.
  3. Start coding!

Local Setup & Development

  1. Clone the repo:

    git clone https://github.com/Kilo-Org/kilocode.git
    
  2. Install dependencies:

    npm run install:all
    
  3. Build the extension:

    npm run build
    
    • A .vsix file will appear in the bin/ directory.
  4. Install the .vsix manually if desired:

    code --install-extension bin/kilo-code-4.0.0.vsix
    
  5. Start the webview (Vite/React app with HMR):

    npm run dev
    
  6. Debug:

    • Press F5 (or RunStart Debugging) in VSCode to open a new session with Kilo Code loaded.

Changes to the webview will appear immediately. Changes to the core extension will require a restart of the extension host.