chat-logbook 0.22.0 → 0.23.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 +2 -1
- package/api/dist/drizzle/archive/0011_add_normalize_version.sql +7 -0
- package/api/dist/drizzle/archive/0012_add_message_model.sql +6 -0
- package/api/dist/drizzle/archive/0013_add_message_effort.sql +6 -0
- package/api/dist/drizzle/archive/meta/_journal.json +21 -0
- package/api/dist/index.js +864 -405
- package/package.json +1 -1
- package/web/dist/assets/common-vv-D-zLq.js +5 -0
- package/web/dist/assets/index-BDcwnucw.css +2 -0
- package/web/dist/assets/index-CaNxBq0o.js +56 -0
- package/web/dist/index.html +2 -2
- package/web/dist/assets/index-COvlJg8P.css +0 -2
- package/web/dist/assets/index-DavBxOby.js +0 -57
package/README.md
CHANGED
|
@@ -38,8 +38,9 @@ The full problem statement, user stories, and direction live in the [PRD](docs/P
|
|
|
38
38
|
**Reading**
|
|
39
39
|
|
|
40
40
|
- **Three-column layout.** Resizable panels for filters, chat list, and conversation — in a Solarized Dark theme that matches Claude Code's terminal.
|
|
41
|
-
- **Rich rendering.** Markdown, syntax-highlighted code,
|
|
41
|
+
- **Rich rendering.** Markdown, syntax-highlighted code, inline images, and file edits shown as diffs. A tool call folds into one row saying what it did, and a stretch of them folds into a single Run.
|
|
42
42
|
- **Long chats stay fast.** A conversation opens at its latest message and scrolls smoothly however far it runs; a corner button, `⌘↑` / `⌘↓` (`Ctrl` elsewhere), or `Home` / `End` jump to the start or the latest.
|
|
43
|
+
- **Pick up where you left off.** Reopening a chat returns you to the last place you read.
|
|
43
44
|
- **Metadata at a glance.** The ⓘ in the header shows when a chat started and last changed, its agent, project, and IDs — with one-click copy.
|
|
44
45
|
|
|
45
46
|
**Finding & organizing**
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
-- The normalize-output version this archive's Normalized layer was last rebuilt
|
|
2
|
+
-- at. Startup compares it to the code's NORMALIZE_VERSION and re-normalizes from
|
|
3
|
+
-- Raw once per bump, so a new block kind (e.g. `command`, ADR-0023) reaches
|
|
4
|
+
-- already-archived dormant chats without re-reading Source. Additive, NOT NULL
|
|
5
|
+
-- with a 0 default so every existing archive reads as "behind" and gets the
|
|
6
|
+
-- first re-normalize pass.
|
|
7
|
+
ALTER TABLE `archive_meta` ADD COLUMN `normalize_version` integer DEFAULT 0 NOT NULL;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
-- The model id the Agent recorded on a message (e.g. `claude-opus-4-8`), so the
|
|
2
|
+
-- conversation pane can name the model per message and show a mid-chat switch
|
|
3
|
+
-- (ADR-0023, #195). Additive and nullable: reader turns record no model, and
|
|
4
|
+
-- rows normalized before this column existed read as NULL until the
|
|
5
|
+
-- NORMALIZE_VERSION bump re-normalizes them from Raw.
|
|
6
|
+
ALTER TABLE `messages` ADD COLUMN `model` text;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
-- The reasoning effort the Agent recorded for a message (e.g. `medium`), so the
|
|
2
|
+
-- assistant byline can name it beside the model (ADR-0023, #234). Additive and
|
|
3
|
+
-- nullable on the same terms as `model`: many turns record no effort, and rows
|
|
4
|
+
-- normalized before this column existed read as NULL until the
|
|
5
|
+
-- NORMALIZE_VERSION bump re-normalizes them from Raw.
|
|
6
|
+
ALTER TABLE `messages` ADD COLUMN `effort` text;
|
|
@@ -78,6 +78,27 @@
|
|
|
78
78
|
"when": 1779500000000,
|
|
79
79
|
"tag": "0010_add_chats_created_at",
|
|
80
80
|
"breakpoints": true
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"idx": 11,
|
|
84
|
+
"version": "6",
|
|
85
|
+
"when": 1779600000000,
|
|
86
|
+
"tag": "0011_add_normalize_version",
|
|
87
|
+
"breakpoints": true
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"idx": 12,
|
|
91
|
+
"version": "6",
|
|
92
|
+
"when": 1779700000000,
|
|
93
|
+
"tag": "0012_add_message_model",
|
|
94
|
+
"breakpoints": true
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"idx": 13,
|
|
98
|
+
"version": "6",
|
|
99
|
+
"when": 1779800000000,
|
|
100
|
+
"tag": "0013_add_message_effort",
|
|
101
|
+
"breakpoints": true
|
|
81
102
|
}
|
|
82
103
|
]
|
|
83
104
|
}
|