kanna-code 0.4.1 → 0.5.0
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.
- package/README.md +4 -2
- package/dist/client/assets/index-Cxfl4RoI.js +473 -0
- package/dist/client/assets/index-DzxKYydf.css +32 -0
- package/dist/client/index.html +2 -2
- package/package.json +9 -3
- package/src/server/cli-runtime.test.ts +13 -0
- package/src/server/cli-runtime.ts +8 -0
- package/src/server/cli.ts +1 -0
- package/src/server/server.ts +5 -0
- package/src/server/terminal-manager.ts +279 -0
- package/src/server/ws-router.test.ts +43 -0
- package/src/server/ws-router.ts +80 -0
- package/src/shared/protocol.ts +25 -0
- package/dist/client/assets/index-BXpHm8Wa.css +0 -1
- package/dist/client/assets/index-CcZLosQ7.js +0 -419
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<h1 align="center">Kanna</h1>
|
|
6
6
|
|
|
7
7
|
<p align="center">
|
|
8
|
-
<strong>A beautiful web UI for Claude Code
|
|
8
|
+
<strong>A beautiful web UI for the Claude Code & Codex CLIs</strong>
|
|
9
9
|
</p>
|
|
10
10
|
|
|
11
11
|
<p align="center">
|
|
@@ -80,10 +80,12 @@ Local File System (~/.kanna/data/, project dirs)
|
|
|
80
80
|
|
|
81
81
|
## Requirements
|
|
82
82
|
|
|
83
|
-
- [Bun](https://bun.sh) v1.
|
|
83
|
+
- [Bun](https://bun.sh) v1.3.5+
|
|
84
84
|
- A working [Claude Code](https://docs.anthropic.com/en/docs/claude-code) environment
|
|
85
85
|
- *(Optional)* [Codex CLI](https://github.com/openai/codex) for Codex provider support
|
|
86
86
|
|
|
87
|
+
Embedded terminal support uses Bun's native PTY APIs and currently works on macOS/Linux.
|
|
88
|
+
|
|
87
89
|
## Install
|
|
88
90
|
|
|
89
91
|
Install Kanna globally:
|