kimi-code 1.3__tar.gz → 1.6__tar.gz

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.
@@ -1,3 +1,11 @@
1
+ Metadata-Version: 2.3
2
+ Name: kimi-code
3
+ Version: 1.6
4
+ Summary: Kimi Code is a CLI agent that lives in your terminal.
5
+ Requires-Dist: kimi-cli==1.6
6
+ Requires-Python: >=3.12
7
+ Description-Content-Type: text/markdown
8
+
1
9
  # Kimi Code CLI
2
10
 
3
11
  [![Commit Activity](https://img.shields.io/github/commit-activity/w/MoonshotAI/kimi-cli)](https://github.com/MoonshotAI/kimi-cli/graphs/commit-activity)
@@ -10,9 +18,6 @@
10
18
 
11
19
  Kimi Code CLI is an AI agent that runs in the terminal, helping you complete software development tasks and terminal operations. It can read and edit code, execute shell commands, search and fetch web pages, and autonomously plan and adjust actions during execution.
12
20
 
13
- > [!IMPORTANT]
14
- > Kimi Code CLI is currently in technical preview.
15
-
16
21
  ## Getting Started
17
22
 
18
23
  See [Getting Started](https://moonshotai.github.io/kimi-cli/en/guides/getting-started.html) for how to install and start using Kimi Code CLI.
@@ -28,6 +33,12 @@ Kimi Code CLI is not only a coding agent, but also a shell. You can switch the s
28
33
  > [!NOTE]
29
34
  > Built-in shell commands like `cd` are not supported yet.
30
35
 
36
+ ### VS Code extension
37
+
38
+ Kimi Code CLI can be integrated with [Visual Studio Code](https://code.visualstudio.com/) via the [Kimi Code VS Code Extension](https://marketplace.visualstudio.com/items?itemName=moonshot-ai.kimi-code).
39
+
40
+ ![VS Code Extension](./docs/media/vscode.png)
41
+
31
42
  ### IDE integration via ACP
32
43
 
33
44
  Kimi Code CLI supports [Agent Client Protocol] out of the box. You can use it together with any ACP-compatible editor or IDE.
@@ -161,11 +172,10 @@ make test # run tests
161
172
  make test-kimi-cli # run Kimi Code CLI tests only
162
173
  make test-kosong # run kosong tests only
163
174
  make test-pykaos # run pykaos tests only
175
+ make build-web # build the web UI and sync it into the package (requires Node.js/npm)
164
176
  make build # build python packages
165
177
  make build-bin # build standalone binary
166
178
  make help # show all make targets
167
179
  ```
168
180
 
169
- ## Contributing
170
-
171
- We welcome contributions to Kimi Code CLI! Please refer to [CONTRIBUTING.md](./CONTRIBUTING.md) for more information.
181
+ Note: `make build` and `make build-bin` automatically run `make build-web` to embed the web UI.
@@ -1,11 +1,3 @@
1
- Metadata-Version: 2.3
2
- Name: kimi-code
3
- Version: 1.3
4
- Summary: Kimi Code is a CLI agent that lives in your terminal.
5
- Requires-Dist: kimi-cli==1.3
6
- Requires-Python: >=3.12
7
- Description-Content-Type: text/markdown
8
-
9
1
  # Kimi Code CLI
10
2
 
11
3
  [![Commit Activity](https://img.shields.io/github/commit-activity/w/MoonshotAI/kimi-cli)](https://github.com/MoonshotAI/kimi-cli/graphs/commit-activity)
@@ -18,9 +10,6 @@ Description-Content-Type: text/markdown
18
10
 
19
11
  Kimi Code CLI is an AI agent that runs in the terminal, helping you complete software development tasks and terminal operations. It can read and edit code, execute shell commands, search and fetch web pages, and autonomously plan and adjust actions during execution.
20
12
 
21
- > [!IMPORTANT]
22
- > Kimi Code CLI is currently in technical preview.
23
-
24
13
  ## Getting Started
25
14
 
26
15
  See [Getting Started](https://moonshotai.github.io/kimi-cli/en/guides/getting-started.html) for how to install and start using Kimi Code CLI.
@@ -36,6 +25,12 @@ Kimi Code CLI is not only a coding agent, but also a shell. You can switch the s
36
25
  > [!NOTE]
37
26
  > Built-in shell commands like `cd` are not supported yet.
38
27
 
28
+ ### VS Code extension
29
+
30
+ Kimi Code CLI can be integrated with [Visual Studio Code](https://code.visualstudio.com/) via the [Kimi Code VS Code Extension](https://marketplace.visualstudio.com/items?itemName=moonshot-ai.kimi-code).
31
+
32
+ ![VS Code Extension](./docs/media/vscode.png)
33
+
39
34
  ### IDE integration via ACP
40
35
 
41
36
  Kimi Code CLI supports [Agent Client Protocol] out of the box. You can use it together with any ACP-compatible editor or IDE.
@@ -169,11 +164,10 @@ make test # run tests
169
164
  make test-kimi-cli # run Kimi Code CLI tests only
170
165
  make test-kosong # run kosong tests only
171
166
  make test-pykaos # run pykaos tests only
167
+ make build-web # build the web UI and sync it into the package (requires Node.js/npm)
172
168
  make build # build python packages
173
169
  make build-bin # build standalone binary
174
170
  make help # show all make targets
175
171
  ```
176
172
 
177
- ## Contributing
178
-
179
- We welcome contributions to Kimi Code CLI! Please refer to [CONTRIBUTING.md](./CONTRIBUTING.md) for more information.
173
+ Note: `make build` and `make build-bin` automatically run `make build-web` to embed the web UI.
@@ -1,10 +1,10 @@
1
1
  [project]
2
2
  name = "kimi-code"
3
- version = "1.3"
3
+ version = "1.6"
4
4
  description = "Kimi Code is a CLI agent that lives in your terminal."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.12"
7
- dependencies = ["kimi-cli==1.3"]
7
+ dependencies = ["kimi-cli==1.6"]
8
8
 
9
9
  [project.scripts]
10
10
  kimi = "kimi_cli.cli:cli"