@cookielab.io/klovi 3.0.0-beta.28 → 3.0.0-beta.29
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 +24 -7
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,18 +1,23 @@
|
|
|
1
1
|
# @cookielab.io/klovi
|
|
2
2
|
|
|
3
|
-
Browse and present AI coding session history. Supports Claude Code, Codex
|
|
3
|
+
Browse and present AI coding session history. Supports Claude Code, Codex CLI,
|
|
4
|
+
and OpenCode.
|
|
4
5
|
|
|
5
6
|
## Quick Start
|
|
6
7
|
|
|
7
8
|
```bash
|
|
8
|
-
# Run with Node.js
|
|
9
|
-
npx @cookielab.io/klovi
|
|
10
|
-
|
|
11
|
-
# Run with Bun
|
|
12
9
|
bunx @cookielab.io/klovi
|
|
13
10
|
```
|
|
14
11
|
|
|
15
|
-
Klovi starts a local server on `http://127.0.0.1:3583` and opens your browser.
|
|
12
|
+
Klovi starts a local server on `http://127.0.0.1:3583` and opens your browser.
|
|
13
|
+
All data stays on your machine. Sessions are read directly from each tool's
|
|
14
|
+
local storage.
|
|
15
|
+
|
|
16
|
+
Compatibility run:
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
npx @cookielab.io/klovi
|
|
20
|
+
```
|
|
16
21
|
|
|
17
22
|
## CLI Options
|
|
18
23
|
|
|
@@ -65,9 +70,21 @@ Starts the Klovi backend server. Returns `{ url, stop() }`.
|
|
|
65
70
|
## Supported Tools
|
|
66
71
|
|
|
67
72
|
- **Claude Code** — reads from `~/.claude/projects/`
|
|
68
|
-
- **Codex
|
|
73
|
+
- **Codex CLI** — reads from `~/.codex/sessions/`
|
|
69
74
|
- **OpenCode** — reads from `~/.local/share/opencode/opencode.db`
|
|
70
75
|
|
|
76
|
+
## Settings
|
|
77
|
+
|
|
78
|
+
Klovi stores settings in `~/.klovi/settings.json` by default. The settings file
|
|
79
|
+
tracks:
|
|
80
|
+
|
|
81
|
+
- enabled/disabled state for each built-in plugin
|
|
82
|
+
- optional custom data directory overrides per plugin
|
|
83
|
+
- general UI settings such as the security warning preference
|
|
84
|
+
|
|
85
|
+
In browser-served mode there is no native directory picker, so custom plugin
|
|
86
|
+
paths are edited manually.
|
|
87
|
+
|
|
71
88
|
## License
|
|
72
89
|
|
|
73
90
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cookielab.io/klovi",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.29",
|
|
4
4
|
"description": "Klovi — browse and present AI coding session history",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"engines": {
|
|
20
20
|
"node": ">=18"
|
|
21
21
|
},
|
|
22
|
-
"commit": "
|
|
22
|
+
"commit": "89ffb93",
|
|
23
23
|
"author": "Cookielab s.r.o.",
|
|
24
24
|
"repository": {
|
|
25
25
|
"type": "git",
|