@kilocode/cli 7.0.44 → 7.0.45

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +82 -0
  2. package/package.json +12 -12
package/README.md ADDED
@@ -0,0 +1,82 @@
1
+ # Kilo Code CLI
2
+
3
+ The AI coding agent built for the terminal. Generate code from natural language, automate tasks, and run terminal commands -- powered by 500+ AI models.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npm install -g @kilocode/cli
9
+ ```
10
+
11
+ Or run directly with npx:
12
+
13
+ ```bash
14
+ npx --package @kilocode/cli kilo
15
+ ```
16
+
17
+ ## Getting Started
18
+
19
+ Run `kilo` in any project directory to launch the interactive TUI:
20
+
21
+ ```bash
22
+ kilo
23
+ ```
24
+
25
+ Run a one-off task:
26
+
27
+ ```bash
28
+ kilo run "add input validation to the signup form"
29
+ ```
30
+
31
+ ## Features
32
+
33
+ - **Code generation** -- describe what you want in natural language
34
+ - **Terminal commands** -- the agent can run shell commands on your behalf
35
+ - **500+ AI models** -- use models from OpenAI, Anthropic, Google, and more
36
+ - **MCP servers** -- extend agent capabilities with the Model Context Protocol
37
+ - **Multiple modes** -- Plan with Architect, code with Coder, debug with Debugger, or create your own
38
+ - **Sessions** -- resume previous conversations and export transcripts
39
+ - **API keys optional** -- bring your own keys or use Kilo credits
40
+
41
+ ## Commands
42
+
43
+ | Command | Description |
44
+ | --------------------- | -------------------------- |
45
+ | `kilo` | Launch interactive TUI |
46
+ | `kilo run "<task>"` | Run a one-off task |
47
+ | `kilo auth` | Manage authentication |
48
+ | `kilo models` | List available models |
49
+ | `kilo mcp` | Manage MCP servers |
50
+ | `kilo session list` | List sessions |
51
+ | `kilo session delete` | Delete a session |
52
+ | `kilo export` | Export session transcripts |
53
+
54
+ Run `kilo --help` for the full list.
55
+
56
+ ## Alternative Installation
57
+
58
+ ### Homebrew (macOS/Linux)
59
+
60
+ ```bash
61
+ brew install Kilo-Org/tap/kilo
62
+ ```
63
+
64
+ ### GitHub Releases
65
+
66
+ Download pre-built binaries from the [Releases page](https://github.com/Kilo-Org/kilocode/releases).
67
+
68
+ ## Documentation
69
+
70
+ - [Docs](https://kilo.ai/docs)
71
+ - [Getting Started](https://kilo.ai/docs/getting-started)
72
+
73
+ ## Links
74
+
75
+ - [GitHub](https://github.com/Kilo-Org/kilocode)
76
+ - [Discord](https://kilo.ai/discord)
77
+ - [VS Code Extension](https://kilo.ai/vscode-marketplace)
78
+ - [Website](https://kilo.ai)
79
+
80
+ ## License
81
+
82
+ MIT
package/package.json CHANGED
@@ -7,20 +7,20 @@
7
7
  "scripts": {
8
8
  "postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
9
9
  },
10
- "version": "7.0.44",
10
+ "version": "7.0.45",
11
11
  "license": "MIT",
12
12
  "optionalDependencies": {
13
- "@kilocode/cli-linux-arm64": "7.0.44",
14
- "@kilocode/cli-linux-x64-musl": "7.0.44",
15
- "@kilocode/cli-darwin-arm64": "7.0.44",
16
- "@kilocode/cli-linux-arm64-musl": "7.0.44",
17
- "@kilocode/cli-windows-x64": "7.0.44",
18
- "@kilocode/cli-linux-x64-baseline-musl": "7.0.44",
19
- "@kilocode/cli-linux-x64": "7.0.44",
20
- "@kilocode/cli-darwin-x64-baseline": "7.0.44",
21
- "@kilocode/cli-darwin-x64": "7.0.44",
22
- "@kilocode/cli-windows-x64-baseline": "7.0.44",
23
- "@kilocode/cli-linux-x64-baseline": "7.0.44"
13
+ "@kilocode/cli-linux-arm64": "7.0.45",
14
+ "@kilocode/cli-linux-x64-musl": "7.0.45",
15
+ "@kilocode/cli-darwin-arm64": "7.0.45",
16
+ "@kilocode/cli-linux-arm64-musl": "7.0.45",
17
+ "@kilocode/cli-windows-x64": "7.0.45",
18
+ "@kilocode/cli-linux-x64-baseline-musl": "7.0.45",
19
+ "@kilocode/cli-linux-x64": "7.0.45",
20
+ "@kilocode/cli-darwin-x64-baseline": "7.0.45",
21
+ "@kilocode/cli-darwin-x64": "7.0.45",
22
+ "@kilocode/cli-windows-x64-baseline": "7.0.45",
23
+ "@kilocode/cli-linux-x64-baseline": "7.0.45"
24
24
  },
25
25
  "repository": {
26
26
  "type": "git",