mirror of
https://github.com/Kilo-Org/kilocode.git
synced 2026-09-19 10:02:04 +08:00
372 lines
11 KiB
JSON
372 lines
11 KiB
JSON
{
|
|
"name": "kilo-code",
|
|
"displayName": "Kilo Code",
|
|
"description": "Kilo Code AI Agent & Autocomplete",
|
|
"version": "7.0.23",
|
|
"publisher": "kilocode",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Kilo-Org/kilo.git",
|
|
"directory": "packages/kilo-vscode"
|
|
},
|
|
"engines": {
|
|
"vscode": "^1.108.0"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"activationEvents": [],
|
|
"main": "./dist/extension.js",
|
|
"contributes": {
|
|
"viewsContainers": {
|
|
"activitybar": [
|
|
{
|
|
"id": "kilo-code-sidebar",
|
|
"title": "Kilo Code (NEW)",
|
|
"icon": "assets/icons/kilo-light.png",
|
|
"darkIcon": "assets/icons/kilo-dark.png"
|
|
}
|
|
]
|
|
},
|
|
"views": {
|
|
"kilo-code-sidebar": [
|
|
{
|
|
"type": "webview",
|
|
"id": "kilo-code.new.sidebarView",
|
|
"name": "Kilo Code (NEW)"
|
|
}
|
|
]
|
|
},
|
|
"commands": [
|
|
{
|
|
"command": "kilo-code.new.plusButtonClicked",
|
|
"title": "New Task",
|
|
"icon": "$(add)"
|
|
},
|
|
{
|
|
"command": "kilo-code.new.agentManagerOpen",
|
|
"title": "Agent Manager",
|
|
"icon": "$(circuit-board)"
|
|
},
|
|
{
|
|
"command": "kilo-code.new.marketplaceButtonClicked",
|
|
"title": "Marketplace",
|
|
"icon": "$(extensions)"
|
|
},
|
|
{
|
|
"command": "kilo-code.new.historyButtonClicked",
|
|
"title": "History",
|
|
"icon": "$(history)"
|
|
},
|
|
{
|
|
"command": "kilo-code.new.profileButtonClicked",
|
|
"title": "Profile",
|
|
"icon": "$(account)"
|
|
},
|
|
{
|
|
"command": "kilo-code.new.settingsButtonClicked",
|
|
"title": "Settings",
|
|
"icon": "$(settings-gear)"
|
|
},
|
|
{
|
|
"command": "kilo-code.new.openInTab",
|
|
"title": "Kilo Code (NEW)",
|
|
"icon": {
|
|
"light": "assets/icons/kilo-light.svg",
|
|
"dark": "assets/icons/kilo-dark.svg"
|
|
}
|
|
},
|
|
{
|
|
"command": "kilo-code.new.autocomplete.generateSuggestions",
|
|
"title": "Generate Suggested Edits",
|
|
"category": "Kilo Code"
|
|
},
|
|
{
|
|
"command": "kilo-code.new.agentManager.previousSession",
|
|
"title": "Agent Manager: Previous Session",
|
|
"category": "Kilo Code"
|
|
},
|
|
{
|
|
"command": "kilo-code.new.agentManager.nextSession",
|
|
"title": "Agent Manager: Next Session",
|
|
"category": "Kilo Code"
|
|
},
|
|
{
|
|
"command": "kilo-code.new.agentManager.previousTab",
|
|
"title": "Agent Manager: Previous Tab",
|
|
"category": "Kilo Code"
|
|
},
|
|
{
|
|
"command": "kilo-code.new.agentManager.nextTab",
|
|
"title": "Agent Manager: Next Tab",
|
|
"category": "Kilo Code"
|
|
},
|
|
{
|
|
"command": "kilo-code.new.generateCommitMessage",
|
|
"title": "Generate Commit Message",
|
|
"category": "Kilo Code (NEW)",
|
|
"icon": "$(sparkle)"
|
|
}
|
|
],
|
|
"keybindings": [
|
|
{
|
|
"command": "kilo-code.new.agentManager.previousSession",
|
|
"key": "ctrl+up",
|
|
"mac": "cmd+up",
|
|
"when": "activeWebviewPanelId == 'kilo-code.new.AgentManagerPanel'"
|
|
},
|
|
{
|
|
"command": "kilo-code.new.agentManager.nextSession",
|
|
"key": "ctrl+down",
|
|
"mac": "cmd+down",
|
|
"when": "activeWebviewPanelId == 'kilo-code.new.AgentManagerPanel'"
|
|
},
|
|
{
|
|
"command": "kilo-code.new.agentManager.previousTab",
|
|
"key": "ctrl+left",
|
|
"mac": "cmd+left",
|
|
"when": "activeWebviewPanelId == 'kilo-code.new.AgentManagerPanel'"
|
|
},
|
|
{
|
|
"command": "kilo-code.new.agentManager.nextTab",
|
|
"key": "ctrl+right",
|
|
"mac": "cmd+right",
|
|
"when": "activeWebviewPanelId == 'kilo-code.new.AgentManagerPanel'"
|
|
}
|
|
],
|
|
"menus": {
|
|
"view/title": [
|
|
{
|
|
"command": "kilo-code.new.plusButtonClicked",
|
|
"group": "navigation@0",
|
|
"when": "view == kilo-code.new.sidebarView"
|
|
},
|
|
{
|
|
"command": "kilo-code.new.agentManagerOpen",
|
|
"group": "navigation@1",
|
|
"when": "view == kilo-code.new.sidebarView"
|
|
},
|
|
{
|
|
"command": "kilo-code.new.marketplaceButtonClicked",
|
|
"group": "navigation@2",
|
|
"when": "view == kilo-code.new.sidebarView"
|
|
},
|
|
{
|
|
"command": "kilo-code.new.historyButtonClicked",
|
|
"group": "navigation@3",
|
|
"when": "view == kilo-code.new.sidebarView"
|
|
},
|
|
{
|
|
"command": "kilo-code.new.profileButtonClicked",
|
|
"group": "navigation@4",
|
|
"when": "view == kilo-code.new.sidebarView"
|
|
},
|
|
{
|
|
"command": "kilo-code.new.settingsButtonClicked",
|
|
"group": "navigation@5",
|
|
"when": "view == kilo-code.new.sidebarView"
|
|
}
|
|
],
|
|
"scm/title": [
|
|
{
|
|
"command": "kilo-code.new.generateCommitMessage",
|
|
"group": "navigation",
|
|
"when": "scmProvider == git"
|
|
}
|
|
],
|
|
"editor/title": [
|
|
{
|
|
"command": "kilo-code.new.openInTab",
|
|
"group": "navigation",
|
|
"when": "true"
|
|
}
|
|
]
|
|
},
|
|
"configuration": {
|
|
"title": "Kilo Code",
|
|
"properties": {
|
|
"kilo-code.new.language": {
|
|
"type": "string",
|
|
"default": "",
|
|
"description": "Override the UI language for Kilo Code (e.g. en, de, ja). Empty means use VS Code's display language.",
|
|
"enum": [
|
|
"",
|
|
"en",
|
|
"zh",
|
|
"zht",
|
|
"ko",
|
|
"de",
|
|
"es",
|
|
"fr",
|
|
"da",
|
|
"ja",
|
|
"pl",
|
|
"ru",
|
|
"ar",
|
|
"no",
|
|
"br",
|
|
"th",
|
|
"bs"
|
|
],
|
|
"enumDescriptions": [
|
|
"Auto (VS Code language)",
|
|
"English",
|
|
"简体中文",
|
|
"繁體中文",
|
|
"한국어",
|
|
"Deutsch",
|
|
"Español",
|
|
"Français",
|
|
"Dansk",
|
|
"日本語",
|
|
"Polski",
|
|
"Русский",
|
|
"العربية",
|
|
"Norsk",
|
|
"Português (Brasil)",
|
|
"ภาษาไทย",
|
|
"Bosanski"
|
|
]
|
|
},
|
|
"kilo-code.new.model.providerID": {
|
|
"type": "string",
|
|
"default": "kilo",
|
|
"description": "Default model provider ID for new sessions"
|
|
},
|
|
"kilo-code.new.model.modelID": {
|
|
"type": "string",
|
|
"default": "kilo/auto",
|
|
"description": "Default model ID for new sessions"
|
|
},
|
|
"kilo-code.new.autocomplete.enableAutoTrigger": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "Enable automatic inline completion suggestions"
|
|
},
|
|
"kilo-code.new.autocomplete.enableSmartInlineTaskKeybinding": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "Enable smart inline task keybinding"
|
|
},
|
|
"kilo-code.new.autocomplete.enableChatAutocomplete": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "Enable chat textarea autocomplete"
|
|
},
|
|
"kilo-code.new.browserAutomation.enabled": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "Enable browser automation powered by Playwright. When enabled, the AI agent can interact with web pages in a visible Chrome window."
|
|
},
|
|
"kilo-code.new.browserAutomation.useSystemChrome": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "Use your system's installed Chrome browser instead of downloading a separate Chromium instance."
|
|
},
|
|
"kilo-code.new.browserAutomation.headless": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "Run browser automation in headless mode (no visible window). When disabled, you can watch the agent interact with the browser."
|
|
},
|
|
"kilo-code.new.notifications.agent": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "Show notification when agent completes a task"
|
|
},
|
|
"kilo-code.new.notifications.permissions": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "Show notification on permission requests"
|
|
},
|
|
"kilo-code.new.notifications.errors": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "Show notification on errors"
|
|
},
|
|
"kilo-code.new.sounds.agent": {
|
|
"type": "string",
|
|
"default": "default",
|
|
"enum": [
|
|
"default",
|
|
"none"
|
|
],
|
|
"description": "Sound to play when agent completes"
|
|
},
|
|
"kilo-code.new.sounds.permissions": {
|
|
"type": "string",
|
|
"default": "default",
|
|
"enum": [
|
|
"default",
|
|
"none"
|
|
],
|
|
"description": "Sound to play on permission requests"
|
|
},
|
|
"kilo-code.new.sounds.errors": {
|
|
"type": "string",
|
|
"default": "default",
|
|
"enum": [
|
|
"default",
|
|
"none"
|
|
],
|
|
"description": "Sound to play on errors"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"scripts": {
|
|
"prepare:cli-binary": "bun script/local-bin.ts",
|
|
"compile": "bun run prepare:cli-binary && bun run check-types && bun run lint && node esbuild.js",
|
|
"watch": "bun run --parallel watch:esbuild watch:tsc",
|
|
"watch:esbuild": "bun run prepare:cli-binary && node esbuild.js --watch",
|
|
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
|
|
"watch:cli": "bun script/watch-cli.ts",
|
|
"package": "bun run prepare:cli-binary && bun run check-types && bun run lint && node esbuild.js --production",
|
|
"compile-tests": "tsc -p . --outDir out",
|
|
"watch-tests": "tsc -p . -w --outDir out",
|
|
"pretest": "bun run compile-tests && bun run compile && bun run lint",
|
|
"check-types": "tsc --noEmit",
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check .",
|
|
"lint": "eslint src",
|
|
"test": "vscode-test"
|
|
},
|
|
"devDependencies": {
|
|
"@types/diff": "^6.0.0",
|
|
"@types/mocha": "^10.0.10",
|
|
"@types/node": "22.x",
|
|
"@types/qrcode": "^1.5.6",
|
|
"@types/vscode": "^1.108.0",
|
|
"@vscode/test-cli": "^0.0.12",
|
|
"@vscode/test-electron": "^2.5.2",
|
|
"esbuild": "^0.27.2",
|
|
"esbuild-plugin-solid": "^0.6.0",
|
|
"eslint": "^9.39.2",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"prettier": "^3.8.1",
|
|
"qrcode": "^1.5.4",
|
|
"typescript": "^5.9.3",
|
|
"typescript-eslint": "^8.54.0"
|
|
},
|
|
"dependencies": {
|
|
"@anthropic-ai/sdk": "^0.39.0",
|
|
"@kilocode/kilo-i18n": "workspace:*",
|
|
"@kilocode/kilo-ui": "workspace:*",
|
|
"@kilocode/sdk": "workspace:*",
|
|
"@opencode-ai/ui": "workspace:*",
|
|
"diff": "^7.0.0",
|
|
"dotenv": "^16.4.7",
|
|
"eventsource": "^2.0.2",
|
|
"fastest-levenshtein": "^1.0.16",
|
|
"ignore": "^7.0.3",
|
|
"js-tiktoken": "^1.0.18",
|
|
"lru-cache": "^11.0.2",
|
|
"openai": "^4.85.4",
|
|
"quick-lru": "^7.0.0",
|
|
"simple-git": "3.31.1",
|
|
"solid-js": "^1.9.11",
|
|
"uri-js": "^4.4.1",
|
|
"web-tree-sitter": "^0.24.7",
|
|
"zod": "^3.24.2"
|
|
}
|
|
}
|