chat-logbook 0.4.2 → 0.6.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 +5 -2
- package/api/dist/index.js +1922 -27
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -63,6 +63,9 @@ The full problem statement, user stories, and direction live in the
|
|
|
63
63
|
- **Local archive.** Every conversation chat-logbook reads is copied into
|
|
64
64
|
`~/.chat-logbook/archive.db`. The UI reads from the archive, so a
|
|
65
65
|
session stays visible even after the source JSONL is gone.
|
|
66
|
+
- **Live updates.** While Claude Code is actively writing to a session,
|
|
67
|
+
new messages appear in chat-logbook within seconds — no restart
|
|
68
|
+
needed.
|
|
66
69
|
|
|
67
70
|
## Quick start
|
|
68
71
|
|
|
@@ -97,8 +100,8 @@ You need to have Claude Code conversation history at `~/.claude/`.
|
|
|
97
100
|
chat-logbook reads from this directory automatically.
|
|
98
101
|
|
|
99
102
|
**"Port already in use."**
|
|
100
|
-
chat-logbook runs on port 3100 by default. Use `
|
|
101
|
-
pick a different port.
|
|
103
|
+
chat-logbook runs on port 3100 by default. Use `chat-log --port 8080`
|
|
104
|
+
(or `PORT=8080 chat-log`) to pick a different port.
|
|
102
105
|
|
|
103
106
|
**Updating to the latest version.**
|
|
104
107
|
Run `npm install -g chat-logbook@latest`. If you use npx, the `@latest`
|