Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions frontend/src/lib/utils/messages.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ describe("isSystemMessage", () => {
["continuation", "This session is being continued from a previous..."],
["interrupted", "[Request interrupted by user]"],
["task-notification", "<task-notification>done</task-notification>"],
["subagent-notification", "<subagent_notification>{\"agent_id\":\"abc\"}</subagent_notification>"],
["command-message", "<command-message>commit</command-message>"],
["command-name", "<command-name>/commit</command-name>"],
["local-command", "<local-command-output>ok</local-command-output>"],
Expand Down
1 change: 1 addition & 0 deletions frontend/src/lib/utils/messages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ const SYSTEM_MSG_PREFIXES = [
"This session is being continued",
"[Request interrupted",
"<task-notification>",
"<subagent_notification>",
"<command-message>",
"<command-name>",
"<local-command-",
Expand Down
2 changes: 1 addition & 1 deletion internal/db/db.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
// formatting changes). Old databases with a lower user_version
// trigger a non-destructive re-sync (mtime reset + skip cache
// clear) so existing session data is preserved.
const dataVersion = 6
const dataVersion = 7

//go:embed schema.sql
var schemaSQL string
Expand Down
Loading
Loading