kimi-code 1.2__tar.gz → 1.4__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,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: kimi-code
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.4
|
|
4
4
|
Summary: Kimi Code is a CLI agent that lives in your terminal.
|
|
5
|
-
Requires-Dist: kimi-cli==1.
|
|
5
|
+
Requires-Dist: kimi-cli==1.4
|
|
6
6
|
Requires-Python: >=3.12
|
|
7
7
|
Description-Content-Type: text/markdown
|
|
8
8
|
|
|
@@ -18,9 +18,6 @@ Description-Content-Type: text/markdown
|
|
|
18
18
|
|
|
19
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.
|
|
20
20
|
|
|
21
|
-
> [!IMPORTANT]
|
|
22
|
-
> Kimi Code CLI is currently in technical preview.
|
|
23
|
-
|
|
24
21
|
## Getting Started
|
|
25
22
|
|
|
26
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.
|
|
@@ -169,11 +166,14 @@ make test # run tests
|
|
|
169
166
|
make test-kimi-cli # run Kimi Code CLI tests only
|
|
170
167
|
make test-kosong # run kosong tests only
|
|
171
168
|
make test-pykaos # run pykaos tests only
|
|
169
|
+
make build-web # build the web UI and sync it into the package (requires Node.js/npm)
|
|
172
170
|
make build # build python packages
|
|
173
171
|
make build-bin # build standalone binary
|
|
174
172
|
make help # show all make targets
|
|
175
173
|
```
|
|
176
174
|
|
|
175
|
+
Note: `make build` and `make build-bin` automatically run `make build-web` to embed the web UI.
|
|
176
|
+
|
|
177
177
|
## Contributing
|
|
178
178
|
|
|
179
179
|
We welcome contributions to Kimi Code CLI! Please refer to [CONTRIBUTING.md](./CONTRIBUTING.md) for more information.
|
|
@@ -10,9 +10,6 @@
|
|
|
10
10
|
|
|
11
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.
|
|
12
12
|
|
|
13
|
-
> [!IMPORTANT]
|
|
14
|
-
> Kimi Code CLI is currently in technical preview.
|
|
15
|
-
|
|
16
13
|
## Getting Started
|
|
17
14
|
|
|
18
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.
|
|
@@ -161,11 +158,14 @@ make test # run tests
|
|
|
161
158
|
make test-kimi-cli # run Kimi Code CLI tests only
|
|
162
159
|
make test-kosong # run kosong tests only
|
|
163
160
|
make test-pykaos # run pykaos tests only
|
|
161
|
+
make build-web # build the web UI and sync it into the package (requires Node.js/npm)
|
|
164
162
|
make build # build python packages
|
|
165
163
|
make build-bin # build standalone binary
|
|
166
164
|
make help # show all make targets
|
|
167
165
|
```
|
|
168
166
|
|
|
167
|
+
Note: `make build` and `make build-bin` automatically run `make build-web` to embed the web UI.
|
|
168
|
+
|
|
169
169
|
## Contributing
|
|
170
170
|
|
|
171
171
|
We welcome contributions to Kimi Code CLI! Please refer to [CONTRIBUTING.md](./CONTRIBUTING.md) for more information.
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "kimi-code"
|
|
3
|
-
version = "1.
|
|
3
|
+
version = "1.4"
|
|
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.
|
|
7
|
+
dependencies = ["kimi-cli==1.4"]
|
|
8
8
|
|
|
9
9
|
[project.scripts]
|
|
10
10
|
kimi = "kimi_cli.cli:cli"
|
|
File without changes
|