fix(sessions): reconcile current category schema

This commit is contained in:
vyctorbrzezowski
2026-08-19 01:56:52 -03:00
parent 66d7a1324e
commit c30ce67209
2 changed files with 10 additions and 5 deletions
@@ -565,12 +565,22 @@
"detailKeys": [
"sessionKey",
"label",
"category",
"unread",
"pinned",
"archived",
"model",
"thinkingLevel"
]
},
"patch_many": {
"label": "update many",
"detailKeys": [
"category",
"unread",
"targets"
]
},
"group_list": {
"label": "groups"
},
-5
View File
@@ -109,11 +109,6 @@ const SessionsToolSchema = Type.Object(
label: Type.Optional(
Type.String({ description: "Sidebar title override. Empty string clears it." }),
),
category: Type.Optional(
Type.Union([Type.String(), Type.Null()], {
description: "Sidebar group/category. Null or empty string clears it to Other.",
}),
),
unread: Type.Optional(Type.Boolean({ description: "Mark the session unread or read." })),
icon: Type.Optional(
Type.String({