kanna-code 0.24.0 → 0.25.1
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 +6 -2
- package/dist/client/assets/index-Cr8ogroL.js +2554 -0
- package/dist/client/assets/index-Hy4LEj8j.css +32 -0
- package/dist/client/index.html +2 -2
- package/package.json +1 -1
- package/src/server/diff-store.test.ts +173 -31
- package/src/server/diff-store.ts +545 -82
- package/src/server/generate-commit-message.test.ts +0 -2
- package/src/server/generate-commit-message.ts +9 -4
- package/src/server/keybindings.test.ts +12 -0
- package/src/server/keybindings.ts +3 -0
- package/src/server/read-models.test.ts +1 -2
- package/src/server/read-models.ts +1 -4
- package/src/server/ws-router.test.ts +275 -8
- package/src/server/ws-router.ts +79 -86
- package/src/shared/protocol.ts +37 -1
- package/src/shared/types.ts +49 -45
- package/dist/client/assets/index-0UyEIBeu.js +0 -2532
- package/dist/client/assets/index-CYUEw41P.css +0 -32
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<p align="center">
|
|
2
2
|
<img src="assets/icon.png" alt="Kanna" width="80" />
|
|
3
|
-
</p>
|
|
3
|
+
</p>
|
|
4
4
|
|
|
5
5
|
<h1 align="center">Kanna</h1>
|
|
6
6
|
|
|
@@ -82,7 +82,7 @@ Local File System (~/.kanna/data/, project dirs)
|
|
|
82
82
|
|
|
83
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
87
|
Embedded terminal support uses Bun's native PTY APIs and currently works on macOS/Linux.
|
|
88
88
|
|
|
@@ -245,6 +245,10 @@ Event logs are append-only JSONL. On startup, Kanna replays the log tail after t
|
|
|
245
245
|
</picture>
|
|
246
246
|
</a>
|
|
247
247
|
|
|
248
|
+
## Contributing
|
|
249
|
+
|
|
250
|
+
Contributions are welcome! Feel free to open PRs
|
|
251
|
+
|
|
248
252
|
## License
|
|
249
253
|
|
|
250
254
|
[MIT](LICENSE)
|