kimi-cli 0.44__py3-none-any.whl → 0.78__py3-none-any.whl
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.
Potentially problematic release.
This version of kimi-cli might be problematic. Click here for more details.
- kimi_cli/CHANGELOG.md +349 -40
- kimi_cli/__init__.py +6 -0
- kimi_cli/acp/AGENTS.md +91 -0
- kimi_cli/acp/__init__.py +13 -0
- kimi_cli/acp/convert.py +111 -0
- kimi_cli/acp/kaos.py +270 -0
- kimi_cli/acp/mcp.py +46 -0
- kimi_cli/acp/server.py +335 -0
- kimi_cli/acp/session.py +445 -0
- kimi_cli/acp/tools.py +158 -0
- kimi_cli/acp/types.py +13 -0
- kimi_cli/agents/default/agent.yaml +4 -4
- kimi_cli/agents/default/sub.yaml +2 -1
- kimi_cli/agents/default/system.md +79 -21
- kimi_cli/agents/okabe/agent.yaml +17 -0
- kimi_cli/agentspec.py +53 -25
- kimi_cli/app.py +180 -52
- kimi_cli/cli/__init__.py +595 -0
- kimi_cli/cli/__main__.py +8 -0
- kimi_cli/cli/info.py +63 -0
- kimi_cli/cli/mcp.py +349 -0
- kimi_cli/config.py +153 -17
- kimi_cli/constant.py +3 -0
- kimi_cli/exception.py +23 -2
- kimi_cli/flow/__init__.py +117 -0
- kimi_cli/flow/d2.py +376 -0
- kimi_cli/flow/mermaid.py +218 -0
- kimi_cli/llm.py +129 -23
- kimi_cli/metadata.py +32 -7
- kimi_cli/platforms.py +262 -0
- kimi_cli/prompts/__init__.py +2 -0
- kimi_cli/prompts/compact.md +4 -5
- kimi_cli/session.py +223 -31
- kimi_cli/share.py +2 -0
- kimi_cli/skill.py +145 -0
- kimi_cli/skills/kimi-cli-help/SKILL.md +55 -0
- kimi_cli/skills/skill-creator/SKILL.md +351 -0
- kimi_cli/soul/__init__.py +51 -20
- kimi_cli/soul/agent.py +213 -85
- kimi_cli/soul/approval.py +86 -17
- kimi_cli/soul/compaction.py +64 -53
- kimi_cli/soul/context.py +38 -5
- kimi_cli/soul/denwarenji.py +2 -0
- kimi_cli/soul/kimisoul.py +442 -60
- kimi_cli/soul/message.py +54 -54
- kimi_cli/soul/slash.py +72 -0
- kimi_cli/soul/toolset.py +387 -6
- kimi_cli/toad.py +74 -0
- kimi_cli/tools/AGENTS.md +5 -0
- kimi_cli/tools/__init__.py +42 -34
- kimi_cli/tools/display.py +25 -0
- kimi_cli/tools/dmail/__init__.py +10 -10
- kimi_cli/tools/dmail/dmail.md +11 -9
- kimi_cli/tools/file/__init__.py +1 -3
- kimi_cli/tools/file/glob.py +20 -23
- kimi_cli/tools/file/grep.md +1 -1
- kimi_cli/tools/file/{grep.py → grep_local.py} +51 -23
- kimi_cli/tools/file/read.md +24 -6
- kimi_cli/tools/file/read.py +134 -50
- kimi_cli/tools/file/replace.md +1 -1
- kimi_cli/tools/file/replace.py +36 -29
- kimi_cli/tools/file/utils.py +282 -0
- kimi_cli/tools/file/write.py +43 -22
- kimi_cli/tools/multiagent/__init__.py +7 -0
- kimi_cli/tools/multiagent/create.md +11 -0
- kimi_cli/tools/multiagent/create.py +50 -0
- kimi_cli/tools/{task/__init__.py → multiagent/task.py} +48 -53
- kimi_cli/tools/shell/__init__.py +120 -0
- kimi_cli/tools/{bash → shell}/bash.md +1 -2
- kimi_cli/tools/shell/powershell.md +25 -0
- kimi_cli/tools/test.py +4 -4
- kimi_cli/tools/think/__init__.py +2 -2
- kimi_cli/tools/todo/__init__.py +14 -8
- kimi_cli/tools/utils.py +64 -24
- kimi_cli/tools/web/fetch.py +68 -13
- kimi_cli/tools/web/search.py +10 -12
- kimi_cli/ui/acp/__init__.py +65 -412
- kimi_cli/ui/print/__init__.py +37 -49
- kimi_cli/ui/print/visualize.py +179 -0
- kimi_cli/ui/shell/__init__.py +141 -84
- kimi_cli/ui/shell/console.py +2 -0
- kimi_cli/ui/shell/debug.py +28 -23
- kimi_cli/ui/shell/keyboard.py +5 -1
- kimi_cli/ui/shell/prompt.py +220 -194
- kimi_cli/ui/shell/replay.py +111 -46
- kimi_cli/ui/shell/setup.py +89 -82
- kimi_cli/ui/shell/slash.py +422 -0
- kimi_cli/ui/shell/update.py +4 -2
- kimi_cli/ui/shell/usage.py +271 -0
- kimi_cli/ui/shell/visualize.py +574 -72
- kimi_cli/ui/wire/__init__.py +267 -0
- kimi_cli/ui/wire/jsonrpc.py +142 -0
- kimi_cli/ui/wire/protocol.py +1 -0
- kimi_cli/utils/__init__.py +0 -0
- kimi_cli/utils/aiohttp.py +2 -0
- kimi_cli/utils/aioqueue.py +72 -0
- kimi_cli/utils/broadcast.py +37 -0
- kimi_cli/utils/changelog.py +12 -7
- kimi_cli/utils/clipboard.py +12 -0
- kimi_cli/utils/datetime.py +37 -0
- kimi_cli/utils/environment.py +58 -0
- kimi_cli/utils/envvar.py +12 -0
- kimi_cli/utils/frontmatter.py +44 -0
- kimi_cli/utils/logging.py +7 -6
- kimi_cli/utils/message.py +9 -14
- kimi_cli/utils/path.py +99 -9
- kimi_cli/utils/pyinstaller.py +6 -0
- kimi_cli/utils/rich/__init__.py +33 -0
- kimi_cli/utils/rich/columns.py +99 -0
- kimi_cli/utils/rich/markdown.py +961 -0
- kimi_cli/utils/rich/markdown_sample.md +108 -0
- kimi_cli/utils/rich/markdown_sample_short.md +2 -0
- kimi_cli/utils/signals.py +2 -0
- kimi_cli/utils/slashcmd.py +124 -0
- kimi_cli/utils/string.py +2 -0
- kimi_cli/utils/term.py +168 -0
- kimi_cli/utils/typing.py +20 -0
- kimi_cli/wire/__init__.py +98 -29
- kimi_cli/wire/serde.py +45 -0
- kimi_cli/wire/types.py +299 -0
- kimi_cli-0.78.dist-info/METADATA +200 -0
- kimi_cli-0.78.dist-info/RECORD +135 -0
- kimi_cli-0.78.dist-info/entry_points.txt +4 -0
- kimi_cli/cli.py +0 -250
- kimi_cli/soul/runtime.py +0 -96
- kimi_cli/tools/bash/__init__.py +0 -99
- kimi_cli/tools/file/patch.md +0 -8
- kimi_cli/tools/file/patch.py +0 -143
- kimi_cli/tools/mcp.py +0 -85
- kimi_cli/ui/shell/liveview.py +0 -386
- kimi_cli/ui/shell/metacmd.py +0 -262
- kimi_cli/wire/message.py +0 -91
- kimi_cli-0.44.dist-info/METADATA +0 -188
- kimi_cli-0.44.dist-info/RECORD +0 -89
- kimi_cli-0.44.dist-info/entry_points.txt +0 -3
- /kimi_cli/tools/{task → multiagent}/task.md +0 -0
- {kimi_cli-0.44.dist-info → kimi_cli-0.78.dist-info}/WHEEL +0 -0
kimi_cli/wire/message.py
DELETED
|
@@ -1,91 +0,0 @@
|
|
|
1
|
-
import asyncio
|
|
2
|
-
import uuid
|
|
3
|
-
from enum import Enum
|
|
4
|
-
from typing import TYPE_CHECKING, NamedTuple
|
|
5
|
-
|
|
6
|
-
from kosong.base.message import ContentPart, ToolCall, ToolCallPart
|
|
7
|
-
from kosong.tooling import ToolResult
|
|
8
|
-
|
|
9
|
-
if TYPE_CHECKING:
|
|
10
|
-
from kimi_cli.soul import StatusSnapshot
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
class StepBegin(NamedTuple):
|
|
14
|
-
n: int
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
class StepInterrupted:
|
|
18
|
-
pass
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
class CompactionBegin:
|
|
22
|
-
"""
|
|
23
|
-
Indicates that a compaction just began.
|
|
24
|
-
This event must be sent during a step, which means, between `StepBegin` and `StepInterrupted`.
|
|
25
|
-
And, there must be a `CompactionEnd` directly following this event.
|
|
26
|
-
"""
|
|
27
|
-
|
|
28
|
-
pass
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
class CompactionEnd:
|
|
32
|
-
"""
|
|
33
|
-
Indicates that a compaction just ended.
|
|
34
|
-
This event must be sent directly after a `CompactionBegin` event.
|
|
35
|
-
"""
|
|
36
|
-
|
|
37
|
-
pass
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
class StatusUpdate(NamedTuple):
|
|
41
|
-
status: "StatusSnapshot"
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
type ControlFlowEvent = StepBegin | StepInterrupted | CompactionBegin | CompactionEnd | StatusUpdate
|
|
45
|
-
type Event = ControlFlowEvent | ContentPart | ToolCall | ToolCallPart | ToolResult
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
class ApprovalResponse(Enum):
|
|
49
|
-
APPROVE = "approve"
|
|
50
|
-
APPROVE_FOR_SESSION = "approve_for_session"
|
|
51
|
-
REJECT = "reject"
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
class ApprovalRequest:
|
|
55
|
-
def __init__(self, tool_call_id: str, sender: str, action: str, description: str):
|
|
56
|
-
self.id = str(uuid.uuid4())
|
|
57
|
-
self.tool_call_id = tool_call_id
|
|
58
|
-
self.sender = sender
|
|
59
|
-
self.action = action
|
|
60
|
-
self.description = description
|
|
61
|
-
self._future = asyncio.Future[ApprovalResponse]()
|
|
62
|
-
|
|
63
|
-
def __repr__(self) -> str:
|
|
64
|
-
return (
|
|
65
|
-
f"ApprovalRequest(id={self.id}, tool_call_id={self.tool_call_id}, "
|
|
66
|
-
f"sender={self.sender}, action={self.action}, description={self.description})"
|
|
67
|
-
)
|
|
68
|
-
|
|
69
|
-
async def wait(self) -> ApprovalResponse:
|
|
70
|
-
"""
|
|
71
|
-
Wait for the request to be resolved or cancelled.
|
|
72
|
-
|
|
73
|
-
Returns:
|
|
74
|
-
ApprovalResponse: The response to the approval request.
|
|
75
|
-
"""
|
|
76
|
-
return await self._future
|
|
77
|
-
|
|
78
|
-
def resolve(self, response: ApprovalResponse) -> None:
|
|
79
|
-
"""
|
|
80
|
-
Resolve the approval request with the given response.
|
|
81
|
-
This will cause the `wait()` method to return the response.
|
|
82
|
-
"""
|
|
83
|
-
self._future.set_result(response)
|
|
84
|
-
|
|
85
|
-
@property
|
|
86
|
-
def resolved(self) -> bool:
|
|
87
|
-
"""Whether the request is resolved."""
|
|
88
|
-
return self._future.done()
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
type WireMessage = Event | ApprovalRequest
|
kimi_cli-0.44.dist-info/METADATA
DELETED
|
@@ -1,188 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.3
|
|
2
|
-
Name: kimi-cli
|
|
3
|
-
Version: 0.44
|
|
4
|
-
Summary: Kimi CLI is your next CLI agent.
|
|
5
|
-
Requires-Dist: agent-client-protocol==0.6.2
|
|
6
|
-
Requires-Dist: aiofiles==25.1.0
|
|
7
|
-
Requires-Dist: aiohttp==3.13.2
|
|
8
|
-
Requires-Dist: click==8.3.0
|
|
9
|
-
Requires-Dist: kosong==0.16.1
|
|
10
|
-
Requires-Dist: loguru==0.7.3
|
|
11
|
-
Requires-Dist: patch-ng==1.19.0
|
|
12
|
-
Requires-Dist: prompt-toolkit==3.0.52
|
|
13
|
-
Requires-Dist: pillow==12.0.0
|
|
14
|
-
Requires-Dist: pyyaml==6.0.3
|
|
15
|
-
Requires-Dist: rich==14.2.0
|
|
16
|
-
Requires-Dist: ripgrepy==2.2.0
|
|
17
|
-
Requires-Dist: streamingjson==0.0.5
|
|
18
|
-
Requires-Dist: trafilatura==2.0.0
|
|
19
|
-
Requires-Dist: tenacity==9.1.2
|
|
20
|
-
Requires-Dist: fastmcp==2.12.5
|
|
21
|
-
Requires-Dist: pydantic==2.12.3
|
|
22
|
-
Requires-Dist: httpx[socks]==0.28.1
|
|
23
|
-
Requires-Python: >=3.13
|
|
24
|
-
Description-Content-Type: text/markdown
|
|
25
|
-
|
|
26
|
-
# Kimi CLI
|
|
27
|
-
|
|
28
|
-
[](https://github.com/MoonshotAI/kimi-cli/graphs/commit-activity)
|
|
29
|
-
[](https://github.com/MoonshotAI/kimi-cli/actions)
|
|
30
|
-
[](https://pypi.org/project/kimi-cli/)
|
|
31
|
-
[](https://pypistats.org/packages/kimi-cli)
|
|
32
|
-
|
|
33
|
-
[中文](https://www.kimi.com/coding/docs/kimi-cli.html)
|
|
34
|
-
|
|
35
|
-
Kimi CLI is a new CLI agent that can help you with your software development tasks and terminal operations.
|
|
36
|
-
|
|
37
|
-
> [!IMPORTANT]
|
|
38
|
-
> Kimi CLI is currently in technical preview.
|
|
39
|
-
|
|
40
|
-
## Key features
|
|
41
|
-
|
|
42
|
-
- Shell-like UI and raw shell command execution
|
|
43
|
-
- Zsh integration
|
|
44
|
-
- [Agent Client Protocol] support
|
|
45
|
-
- MCP support
|
|
46
|
-
- And more to come...
|
|
47
|
-
|
|
48
|
-
[Agent Client Protocol]: https://github.com/agentclientprotocol/agent-client-protocol
|
|
49
|
-
|
|
50
|
-
## Installation
|
|
51
|
-
|
|
52
|
-
> [!IMPORTANT]
|
|
53
|
-
> Kimi CLI currently only supports macOS and Linux. Windows support is coming soon.
|
|
54
|
-
|
|
55
|
-
Kimi CLI is published as a Python package on PyPI. We highly recommend installing it with [uv](https://docs.astral.sh/uv/). If you have not installed uv yet, please follow the instructions [here](https://docs.astral.sh/uv/getting-started/installation/) to install it first.
|
|
56
|
-
|
|
57
|
-
Once uv is installed, you can install Kimi CLI with:
|
|
58
|
-
|
|
59
|
-
```sh
|
|
60
|
-
uv tool install --python 3.13 kimi-cli
|
|
61
|
-
```
|
|
62
|
-
|
|
63
|
-
Run `kimi --help` to check if Kimi CLI is installed successfully.
|
|
64
|
-
|
|
65
|
-
> [!IMPORTANT]
|
|
66
|
-
> Due to the security checks on macOS, the first time you run `kimi` command may take 10 seconds or more depending on your system environment.
|
|
67
|
-
|
|
68
|
-
## Upgrading
|
|
69
|
-
|
|
70
|
-
Upgrade Kimi CLI to the latest version with:
|
|
71
|
-
|
|
72
|
-
```sh
|
|
73
|
-
uv tool upgrade kimi-cli --no-cache
|
|
74
|
-
```
|
|
75
|
-
|
|
76
|
-
## Usage
|
|
77
|
-
|
|
78
|
-
Run `kimi` command in the directory you want to work on, then send `/setup` to setup Kimi CLI:
|
|
79
|
-
|
|
80
|
-

|
|
81
|
-
|
|
82
|
-
After setup, Kimi CLI will be ready to use. You can send `/help` to get more information.
|
|
83
|
-
|
|
84
|
-
## Features
|
|
85
|
-
|
|
86
|
-
### Shell mode
|
|
87
|
-
|
|
88
|
-
Kimi CLI is not only a coding agent, but also a shell. You can switch the mode by pressing `Ctrl-X`. In shell mode, you can directly run shell commands without leaving Kimi CLI.
|
|
89
|
-
|
|
90
|
-
> [!NOTE]
|
|
91
|
-
> Built-in shell commands like `cd` are not supported yet.
|
|
92
|
-
|
|
93
|
-
### Zsh integration
|
|
94
|
-
|
|
95
|
-
You can use Kimi CLI together with Zsh, to empower your shell experience with AI agent capabilities.
|
|
96
|
-
|
|
97
|
-
Install the [zsh-kimi-cli](https://github.com/MoonshotAI/zsh-kimi-cli) plugin via:
|
|
98
|
-
|
|
99
|
-
```sh
|
|
100
|
-
git clone https://github.com/MoonshotAI/zsh-kimi-cli.git \
|
|
101
|
-
${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/kimi-cli
|
|
102
|
-
```
|
|
103
|
-
|
|
104
|
-
> [!NOTE]
|
|
105
|
-
> If you are using a plugin manager other than Oh My Zsh, you may need to refer to the plugin's README for installation instructions.
|
|
106
|
-
|
|
107
|
-
Then add `kimi-cli` to your Zsh plugin list in `~/.zshrc`:
|
|
108
|
-
|
|
109
|
-
```sh
|
|
110
|
-
plugins=(... kimi-cli)
|
|
111
|
-
```
|
|
112
|
-
|
|
113
|
-
After restarting Zsh, you can switch to agent mode by pressing `Ctrl-X`.
|
|
114
|
-
|
|
115
|
-
### ACP support
|
|
116
|
-
|
|
117
|
-
Kimi CLI supports [Agent Client Protocol] out of the box. You can use it together with any ACP-compatible editor or IDE.
|
|
118
|
-
|
|
119
|
-
For example, to use Kimi CLI with [Zed](https://zed.dev/), add the following configuration to your `~/.config/zed/settings.json`:
|
|
120
|
-
|
|
121
|
-
```json
|
|
122
|
-
{
|
|
123
|
-
"agent_servers": {
|
|
124
|
-
"Kimi CLI": {
|
|
125
|
-
"command": "kimi",
|
|
126
|
-
"args": ["--acp"],
|
|
127
|
-
"env": {}
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
|
-
```
|
|
132
|
-
|
|
133
|
-
Then you can create Kimi CLI threads in Zed's agent panel.
|
|
134
|
-
|
|
135
|
-
### Using MCP tools
|
|
136
|
-
|
|
137
|
-
Kimi CLI supports the well-established MCP config convention. For example:
|
|
138
|
-
|
|
139
|
-
```json
|
|
140
|
-
{
|
|
141
|
-
"mcpServers": {
|
|
142
|
-
"context7": {
|
|
143
|
-
"url": "https://mcp.context7.com/mcp",
|
|
144
|
-
"headers": {
|
|
145
|
-
"CONTEXT7_API_KEY": "YOUR_API_KEY"
|
|
146
|
-
}
|
|
147
|
-
},
|
|
148
|
-
"chrome-devtools": {
|
|
149
|
-
"command": "npx",
|
|
150
|
-
"args": ["-y", "chrome-devtools-mcp@latest"]
|
|
151
|
-
}
|
|
152
|
-
}
|
|
153
|
-
}
|
|
154
|
-
```
|
|
155
|
-
|
|
156
|
-
Run `kimi` with `--mcp-config-file` option to connect to the specified MCP servers:
|
|
157
|
-
|
|
158
|
-
```sh
|
|
159
|
-
kimi --mcp-config-file /path/to/mcp.json
|
|
160
|
-
```
|
|
161
|
-
|
|
162
|
-
## Development
|
|
163
|
-
|
|
164
|
-
To develop Kimi CLI, run:
|
|
165
|
-
|
|
166
|
-
```sh
|
|
167
|
-
git clone https://github.com/MoonshotAI/kimi-cli.git
|
|
168
|
-
cd kimi-cli
|
|
169
|
-
|
|
170
|
-
make prepare # prepare the development environment
|
|
171
|
-
```
|
|
172
|
-
|
|
173
|
-
Then you can start working on Kimi CLI.
|
|
174
|
-
|
|
175
|
-
Refer to the following commands after you make changes:
|
|
176
|
-
|
|
177
|
-
```sh
|
|
178
|
-
uv run kimi # run Kimi CLI
|
|
179
|
-
|
|
180
|
-
make format # format code
|
|
181
|
-
make check # run linting and type checking
|
|
182
|
-
make test # run tests
|
|
183
|
-
make help # show all make targets
|
|
184
|
-
```
|
|
185
|
-
|
|
186
|
-
## Contributing
|
|
187
|
-
|
|
188
|
-
We welcome contributions to Kimi CLI! Please refer to [CONTRIBUTING.md](./CONTRIBUTING.md) for more information.
|
kimi_cli-0.44.dist-info/RECORD
DELETED
|
@@ -1,89 +0,0 @@
|
|
|
1
|
-
kimi_cli/CHANGELOG.md,sha256=f3231982f148e227198bfab938f3878052366c02d80c3432e5ac48d3a9dbd234,8325
|
|
2
|
-
kimi_cli/__init__.py,sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855,0
|
|
3
|
-
kimi_cli/agents/default/agent.yaml,sha256=6e5c51987ef5cfc0c4c4e34cc20b6fc975953ee219623fccae81a19155aab7b3,709
|
|
4
|
-
kimi_cli/agents/default/sub.yaml,sha256=e0c1ea34fdb04b0d6dc635709f0f130aff25d7f9fb97e238470143c8145be251,634
|
|
5
|
-
kimi_cli/agents/default/system.md,sha256=1d8fd4956b2442215396b5e9651771c9da8f9505ccbd3b6d5e91b1ac4ff35418,5001
|
|
6
|
-
kimi_cli/agentspec.py,sha256=1148b5184ca610b2fb261ce365a63eb2fc9d09497330fe0ea4b2567fc98d5657,4307
|
|
7
|
-
kimi_cli/app.py,sha256=973684726d6c7bc0140f4c7940d1c3585899d828b5ab1c25b4e322c7fa6f7c35,7011
|
|
8
|
-
kimi_cli/cli.py,sha256=3c73fea4dd930a1c80b97ea4b8a71cdf482208d3a0304a769bd59b4e95c1c664,6713
|
|
9
|
-
kimi_cli/config.py,sha256=1bdd90554d33c45848d9ed9499a7914aecdf51e9166abe1b211d95aaa05a6382,4992
|
|
10
|
-
kimi_cli/constant.py,sha256=78e25b9304cca7b6f70bb08bf0e1fee4b066297a05386e56dd6935ba42027cd9,110
|
|
11
|
-
kimi_cli/exception.py,sha256=a3fec07566da7d2d34be8cc454fb825f34109bbde3cddf69e1ece6ab21b4b219,259
|
|
12
|
-
kimi_cli/llm.py,sha256=d53be2d6f75bd8c92304df9841a236671d7e53ac325eb87293a22fadf90d6a18,3628
|
|
13
|
-
kimi_cli/metadata.py,sha256=9e9d4bc12ff26fc34e0e09d9068be989f2ff3c8b682ef453de69e442f8f672a1,1557
|
|
14
|
-
kimi_cli/prompts/__init__.py,sha256=6dc5ed2d841f145c09550075f30853cdc51f00d2f5d9aa1097f8edea770536e7,174
|
|
15
|
-
kimi_cli/prompts/compact.md,sha256=6655bd7d8270b24d8f97b51ef7c471cf71d686c56f8ec9a5cc9e47caa3aae87c,1877
|
|
16
|
-
kimi_cli/prompts/init.md,sha256=d271a0df6dd7b330ffec4f645a74c0392dafc1b3bfc1e3f2a77624e96cf6abbe,1380
|
|
17
|
-
kimi_cli/py.typed,sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855,0
|
|
18
|
-
kimi_cli/session.py,sha256=c0623b0cec8ce311f1ddc7bb47e1e452499e13f816b7c3023342499a436dcfc5,2853
|
|
19
|
-
kimi_cli/share.py,sha256=4292df7f44177419c45c772a933b5f36e2b7533f8cef9842629a438bc7856dc0,204
|
|
20
|
-
kimi_cli/soul/__init__.py,sha256=9888a937570bf8bc6e49087a0694f121957210eaa14a7efb4042eb513e136caa,5499
|
|
21
|
-
kimi_cli/soul/agent.py,sha256=776e92f46cff2ac5ec0acd06acb445ddabbee05fcc358f9cde54d439e505d300,4843
|
|
22
|
-
kimi_cli/soul/approval.py,sha256=48cd230dff81dfd70bd85f1ad2b99604d5569cf617a4c79c444f9772bbc89ce6,2552
|
|
23
|
-
kimi_cli/soul/compaction.py,sha256=dab17979060fceeed4a7a344373833022dc7abac04282364f2a1b20e6edd4581,3558
|
|
24
|
-
kimi_cli/soul/context.py,sha256=541759a65f8f87a3424a6da160ffb2043046e6f6b714124d94d82a77635df9bc,5855
|
|
25
|
-
kimi_cli/soul/denwarenji.py,sha256=66b95f052a1fa844e2347972d34e1916a7be24d3e493701b451f5380b0375c9f,1384
|
|
26
|
-
kimi_cli/soul/kimisoul.py,sha256=68c65fe0f97700832a42018ae00892d38dc79f14759265042f47b707dbc0c749,11822
|
|
27
|
-
kimi_cli/soul/message.py,sha256=7a52a6d4d63ef1a3621d93d5ff86887baa7e67019bf2e9a08c374fc130b8d152,2541
|
|
28
|
-
kimi_cli/soul/runtime.py,sha256=9421a3ce6882587a95ecdf77b3d75f3b7ecab55cf68dc57e3e563b93e5a02e46,2690
|
|
29
|
-
kimi_cli/soul/toolset.py,sha256=60166d89ef0efac690fa6866e88afe70fbe80ad862ba2524d70ddf657a730d14,744
|
|
30
|
-
kimi_cli/tools/__init__.py,sha256=4d612402814eede7182e0a55e7dd21c4532b5dd44700dc744763a8308c2f74f8,3280
|
|
31
|
-
kimi_cli/tools/bash/__init__.py,sha256=de21b19c714bda53f6c89e3348c4c82fb4278040130fed1d261b3ab203054e8c,3028
|
|
32
|
-
kimi_cli/tools/bash/bash.md,sha256=5d9cc54b3718097951340b0a737c8e1fa308341fd2c4ebd121be94de31dd5f73,2348
|
|
33
|
-
kimi_cli/tools/dmail/__init__.py,sha256=a9186ed4e52c34cab7516060bb6edca73324912233b1581c0d3a40b026400133,1277
|
|
34
|
-
kimi_cli/tools/dmail/dmail.md,sha256=0d18cae387dd52127ddc99e296253c09e68ccba5f343153c0adbe77d7586e759,1912
|
|
35
|
-
kimi_cli/tools/file/__init__.py,sha256=1516fb4c71097f9c14b605e7b9a1872af8786bdcb48323d1fa83bb1419436abb,546
|
|
36
|
-
kimi_cli/tools/file/glob.md,sha256=11fbfaf6033f57b69c6f91077ddd90505036937cd7217600d96992b9a48b7ca7,1400
|
|
37
|
-
kimi_cli/tools/file/glob.py,sha256=67b0b55e95b57e34cb43ecf382667d1b9b78903787c00bb2d0929dbede812f2f,5413
|
|
38
|
-
kimi_cli/tools/file/grep.md,sha256=12353db42cf3b5d9d91ac7c0f0b9c2a732e8b050c23a78f4e668db823cca4d50,245
|
|
39
|
-
kimi_cli/tools/file/grep.py,sha256=01794320049b46207aeb28bd7f3dbea373ede891916107cab871ea959e81a335,9787
|
|
40
|
-
kimi_cli/tools/file/patch.md,sha256=f9edbed6c6a03bf7448a51acc1f42622395fd7f1674a814e9a3b2302d3b7b92e,404
|
|
41
|
-
kimi_cli/tools/file/patch.py,sha256=7e31d85ece4ece2439e9dfd085505e496d9e47d176b820c61798e3c4f71628db,5228
|
|
42
|
-
kimi_cli/tools/file/read.md,sha256=4c2d83e557daadc0612fb1a613e252b2c8e4df7ae57e6db094e9e75e994cb23b,1066
|
|
43
|
-
kimi_cli/tools/file/read.py,sha256=1d3d8116ee23f224d04c5ba10e3c3261e94fbbe3b932d57ae5fca48a0afdb592,5068
|
|
44
|
-
kimi_cli/tools/file/replace.md,sha256=f429f263fa580f2f6107907a33ba8800dcdbd4fc1d9ff8dc4f858bd76ec6bbc6,267
|
|
45
|
-
kimi_cli/tools/file/replace.py,sha256=8df993fb49a975b87820fbdbc7d7b349e18516250b0f895dd047b87c3df89e73,5204
|
|
46
|
-
kimi_cli/tools/file/write.md,sha256=f37b0f4742da57797ec4dd29fbd4fdc9b6617c6be644724a3b16d651c6129cec,324
|
|
47
|
-
kimi_cli/tools/file/write.py,sha256=22f4eb8e635b279e48bde7f09e7416a01b8ed88c140424c149a6398a0a321f1a,4378
|
|
48
|
-
kimi_cli/tools/mcp.py,sha256=12f63c9ee5b82a5b0f23daca0b5ce4ceb3a6190ce5b553ee24e499699521e426,3620
|
|
49
|
-
kimi_cli/tools/task/__init__.py,sha256=193ad32d83e6da7991416b845be5a31cc64657c0945872acfc087058dd1d7b37,6566
|
|
50
|
-
kimi_cli/tools/task/task.md,sha256=391cc3553c7d310a323626bae180dd41cb810fb1233583713ebde105f954147a,2280
|
|
51
|
-
kimi_cli/tools/test.py,sha256=c094a91a2d1a5259e192f1147facd5eebd5e5c413787fce167db90e4b41b5119,1442
|
|
52
|
-
kimi_cli/tools/think/__init__.py,sha256=31b06088e2404cb09d42e0acec97c185e4861890bb687f28b41f39cea01b5733,603
|
|
53
|
-
kimi_cli/tools/think/think.md,sha256=ab40d4de1d8adb208384a4ab548e35776283cb0a681c6e208b041fc40ccba724,200
|
|
54
|
-
kimi_cli/tools/todo/__init__.py,sha256=aa02c8afa19d9ae2ef1f6ffee147dc96732a9cb9895aa5e13fe0f9efe753fe00,897
|
|
55
|
-
kimi_cli/tools/todo/set_todo_list.md,sha256=89509503f43ab321d440a04dc133ddc3e29859f68907a42c39e6093f7bfd485c,1654
|
|
56
|
-
kimi_cli/tools/utils.py,sha256=2e00d6f04f91e05a91bfb691e547a76193063fa6769a03f7d3ff992aba9372bf,4596
|
|
57
|
-
kimi_cli/tools/web/__init__.py,sha256=e13108c598828a8a05907a7a821e7ac92f5d63572bb9866dc12ca026094acb42,95
|
|
58
|
-
kimi_cli/tools/web/fetch.md,sha256=56d00bd93b4e379c4f7efe445fce963eb26b8d20f85d4c19097ba6f33bd0019a,67
|
|
59
|
-
kimi_cli/tools/web/fetch.py,sha256=66448121d27d67f75b977c32244c721c2ccff1b2e097c2fe6717e66018d8f747,3183
|
|
60
|
-
kimi_cli/tools/web/search.md,sha256=24049f9e90d37083e0fc78b8b2e3a5f6fadf09bea00f36712b235d1212a2f532,146
|
|
61
|
-
kimi_cli/tools/web/search.py,sha256=85de343b20bc9e58de8a09aba7c3aac619d6fc6d30a6a5b565108faeb4500faf,4517
|
|
62
|
-
kimi_cli/ui/__init__.py,sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855,0
|
|
63
|
-
kimi_cli/ui/acp/__init__.py,sha256=a35e17273e943168882865f90d922180c5a1f01de0d128c899ffcfe55a9db3c3,17120
|
|
64
|
-
kimi_cli/ui/print/__init__.py,sha256=ca402bec701a253acd6de5b57d59635ac0b05d4013cebc26877c5aa4aa2c27c7,5546
|
|
65
|
-
kimi_cli/ui/shell/__init__.py,sha256=aa30b512004be5ad9c8b8ab420bbdb574532dc90968067682dab58ff19e8b660,11289
|
|
66
|
-
kimi_cli/ui/shell/console.py,sha256=bcbf7efd214cba3d2259f2a2c1842250cde96d49e4f9f1e0b60273cf1c366be3,842
|
|
67
|
-
kimi_cli/ui/shell/debug.py,sha256=cd4e7259c83f099b5c6519713be5306580f30d3fa4944e07916d4468e960c9c7,5562
|
|
68
|
-
kimi_cli/ui/shell/keyboard.py,sha256=23e5fbc4b6acda4c0f3b5297a0ae6eb09a90f4b5b37b2e95b7ce86a2da0d5dca,5160
|
|
69
|
-
kimi_cli/ui/shell/liveview.py,sha256=f4e6ac37c446740b5c55cf37d5ebd327b5d41334d41d5e54ad8ad15445c1a492,14239
|
|
70
|
-
kimi_cli/ui/shell/metacmd.py,sha256=a0e52e9cbd8758c1ba13f025599341aa59dd5bc5e244840da2ff9bb71f952a20,7678
|
|
71
|
-
kimi_cli/ui/shell/prompt.py,sha256=d18003de33da0c9711bf54496cb4d5f6f5aa6b2179b1618e4475b1f020208f6c,25808
|
|
72
|
-
kimi_cli/ui/shell/replay.py,sha256=e54f58acebc46ad944e1a2cdf54d81559262d2cf8baf5da391ed903926f1ccf1,3767
|
|
73
|
-
kimi_cli/ui/shell/setup.py,sha256=8fbf2935fc5b972d2c3946e8dc9f4a7e9d2953810b57c0fb6f22172abf3e6fb5,5369
|
|
74
|
-
kimi_cli/ui/shell/update.py,sha256=56dcb0bd1da82b98c22bfdddca717a2805bd8ac3e93bf23fb3b508549c41fae8,7340
|
|
75
|
-
kimi_cli/ui/shell/visualize.py,sha256=1abaa53cf78836f71b1f83085b6bfe3f86624951fa3297d5086a06bafa97f960,3884
|
|
76
|
-
kimi_cli/utils/aiohttp.py,sha256=f8f61e3beaf6439e949c33c3a10db3035bf88136e882b09c858ea92a4c888e00,245
|
|
77
|
-
kimi_cli/utils/changelog.py,sha256=bfcf5a5a360b13648bb7a6abc83e427270caa502646b5acc950d62148510641c,3402
|
|
78
|
-
kimi_cli/utils/logging.py,sha256=129298ac214ecd8d913c3431cc05d754f9c4c8c4042c458618bf9e8ddebdb763,399
|
|
79
|
-
kimi_cli/utils/message.py,sha256=e552db92b2fb1911a0e05d2730590c4aca52b90bcf743330ae1bd8a78a5ed2f9,732
|
|
80
|
-
kimi_cli/utils/path.py,sha256=fdd4fc08999ddc7c610f884b4ba8d27932248b9ed06b5eb4139519edd00b3f75,687
|
|
81
|
-
kimi_cli/utils/pyinstaller.py,sha256=e5d709d0490ef8645bbed2d2363920c59f25bd17c04f471bf4a8c0fa2ebe1801,581
|
|
82
|
-
kimi_cli/utils/signals.py,sha256=20e0d158a1043189d44815fe3624cd0bfe41e99620a18ac9e12c0eda6db5220f,1387
|
|
83
|
-
kimi_cli/utils/string.py,sha256=0d437d3633199df1051813af8b49a2f808c6525547310cc5c3d427710d2eae06,593
|
|
84
|
-
kimi_cli/wire/__init__.py,sha256=9f1d7eb58f76885edaf76f769371c363ec801b46cada03883eeb3536fa2677f7,1896
|
|
85
|
-
kimi_cli/wire/message.py,sha256=72222d3f3d7228a323dbba7b1084f35018104c58e4bb2aa51d0827984791841d,2398
|
|
86
|
-
kimi_cli-0.44.dist-info/WHEEL,sha256=70ab3c2925fe316809860cb034f99ba13c4b49819b339959274aab755cc084a8,78
|
|
87
|
-
kimi_cli-0.44.dist-info/entry_points.txt,sha256=97e051756296e9db3167f6dce61d6c88e58d170314a2d63d18c84c73a5c1333b,44
|
|
88
|
-
kimi_cli-0.44.dist-info/METADATA,sha256=02a3d900f175956a579d59cc4a039fb64cc0409e8d4f3baf43289b312e6aeb32,5217
|
|
89
|
-
kimi_cli-0.44.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|