chat-logbook 0.11.0 → 0.13.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 +3 -5
- package/api/dist/drizzle/0004_add_tags.sql +16 -0
- package/api/dist/drizzle/archive/0008_add_chats_project_idx.sql +1 -0
- package/api/dist/drizzle/archive/meta/_journal.json +7 -0
- package/api/dist/drizzle/meta/_journal.json +7 -0
- package/api/dist/index.js +1208 -837
- package/package.json +1 -1
- package/web/dist/assets/index-BlF09kci.css +2 -0
- package/web/dist/assets/index-CHr9-eHr.js +57 -0
- package/web/dist/index.html +2 -2
- package/web/dist/assets/index-DHnNZHtV.js +0 -57
- package/web/dist/assets/index-DSNHfjXl.css +0 -2
package/README.md
CHANGED
|
@@ -42,6 +42,8 @@ The full problem statement, user stories, and direction live in the [PRD](docs/P
|
|
|
42
42
|
- **Local archive.** Every conversation chat-logbook reads is copied into `~/.chat-logbook/archive.db`. The UI reads from the archive, so a chat stays visible even after the source JSONL is gone.
|
|
43
43
|
- **Live updates.** While Claude Code is actively writing to a chat, new messages appear in chat-logbook within seconds — no restart needed.
|
|
44
44
|
- **Chat metadata at a glance.** A ⓘ button on the conversation header opens a popover showing when the chat started, when it was last updated, the agent, the project working directory, and the chat's IDs — with one-click copy.
|
|
45
|
+
- **Tags.** Create tags, give them colors, and assign them to chats. They show as colored chips on the chat and in the list. Rename or delete them anytime.
|
|
46
|
+
- **Filter by tag or project.** Narrow the chat list to a project, or to chats that carry all of several selected tags.
|
|
45
47
|
|
|
46
48
|
## Quick start
|
|
47
49
|
|
|
@@ -109,13 +111,9 @@ No. chat-logbook reads files those tools write on your machine. It doesn't talk
|
|
|
109
111
|
|
|
110
112
|
## Roadmap
|
|
111
113
|
|
|
112
|
-
Two phases of work are in flight, in this order.
|
|
113
|
-
|
|
114
|
-
**Custom titles and tags.** Rename a chat to something you'll recognize, attach tags with custom colors, and filter the list by tag or by project. This is the path from "I have a lot of conversations" to "I can find the one I need."
|
|
115
|
-
|
|
116
114
|
**Spotlight search.** A keyboard-driven overlay (`⌘K` or `/`) that searches across chats, messages, tags, and projects from one input. A match lands you on the exact message with the term highlighted, and you can jump between every match without leaving the overlay.
|
|
117
115
|
|
|
118
|
-
Beyond
|
|
116
|
+
Beyond this, several smaller things are on the list without firm timing — live updates while an AI tool is writing, annotations and highlights for marking what matters, editing your own past messages, CLI commands for working with conversations from a terminal. Some will ship; some are still being weighed.
|
|
119
117
|
|
|
120
118
|
Explicit non-goals: semantic / vector search, cloud sync inside the OSS core, modification of source directories like `~/.claude/`, and bulk export to bespoke formats (the archive itself is the export). See the [PRD](docs/PRD.md) for the full out-of-scope list.
|
|
121
119
|
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
CREATE TABLE `tags` (
|
|
2
|
+
`id` text PRIMARY KEY NOT NULL,
|
|
3
|
+
`name` text NOT NULL,
|
|
4
|
+
`color` text NOT NULL,
|
|
5
|
+
`created_at` integer NOT NULL,
|
|
6
|
+
`updated_at` integer NOT NULL
|
|
7
|
+
);
|
|
8
|
+
--> statement-breakpoint
|
|
9
|
+
CREATE TABLE `chat_tags` (
|
|
10
|
+
`chat_id` text NOT NULL,
|
|
11
|
+
`tag_id` text NOT NULL,
|
|
12
|
+
PRIMARY KEY(`chat_id`, `tag_id`),
|
|
13
|
+
FOREIGN KEY (`tag_id`) REFERENCES `tags`(`id`) ON UPDATE no action ON DELETE cascade
|
|
14
|
+
);
|
|
15
|
+
--> statement-breakpoint
|
|
16
|
+
CREATE INDEX `chat_tags_tag_id_idx` ON `chat_tags` (`tag_id`);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
CREATE INDEX `chats_project_idx` ON `chats` (`project`);
|