chat-logbook 0.1.1 → 0.1.2
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 +16 -7
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -20,24 +20,30 @@ Browse, tag, annotate, and organize your Claude Code conversation history — al
|
|
|
20
20
|
|
|
21
21
|
### Prerequisites
|
|
22
22
|
|
|
23
|
-
- Node.js >=
|
|
23
|
+
- Node.js >= 20
|
|
24
24
|
|
|
25
25
|
### Usage
|
|
26
26
|
|
|
27
|
-
|
|
27
|
+
Install globally for a shorter command:
|
|
28
28
|
|
|
29
29
|
```bash
|
|
30
|
-
|
|
30
|
+
npm install -g chat-logbook
|
|
31
|
+
chat-log
|
|
31
32
|
```
|
|
32
33
|
|
|
33
|
-
Or
|
|
34
|
+
Or try without installing:
|
|
34
35
|
|
|
35
36
|
```bash
|
|
36
|
-
|
|
37
|
-
chat-log
|
|
37
|
+
npx chat-logbook@latest
|
|
38
38
|
```
|
|
39
39
|
|
|
40
|
-
|
|
40
|
+
You should see:
|
|
41
|
+
|
|
42
|
+
```
|
|
43
|
+
chat-logbook is running at http://localhost:3100
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
Your browser will open automatically, showing a list of your Claude Code sessions on the left and conversation content on the right.
|
|
41
47
|
|
|
42
48
|
### Troubleshooting
|
|
43
49
|
|
|
@@ -47,6 +53,9 @@ Make sure you have Claude Code conversation history at `~/.claude/`. chat-logboo
|
|
|
47
53
|
**Port already in use**
|
|
48
54
|
By default, chat-logbook runs on port 3100. Use `PORT=8080 chat-log` to specify a different port.
|
|
49
55
|
|
|
56
|
+
**Updating to the latest version**
|
|
57
|
+
Run `npm install -g chat-logbook@latest` to update. If you use npx, the `@latest` tag ensures you always run the newest version.
|
|
58
|
+
|
|
50
59
|
## How It Works
|
|
51
60
|
|
|
52
61
|
chat-logbook reads conversation data directly from the JSONL files that Claude Code stores in `~/.claude/`. It **never modifies** these files — your original conversation data is always left untouched.
|
package/package.json
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chat-logbook",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "A local-first conversation manager for Claude Code",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
|
+
"engines": {
|
|
8
|
+
"node": ">=20"
|
|
9
|
+
},
|
|
7
10
|
"bin": {
|
|
8
11
|
"chat-logbook": "./bin/cli.js",
|
|
9
12
|
"chat-log": "./bin/cli.js"
|