refactor(core): own todo event schema

This commit is contained in:
Kit Langton 2026-06-22 16:06:45 -04:00
commit 42c5e9fbd4
2 changed files with 6 additions and 21 deletions

View file

@ -13,7 +13,7 @@ export const Info = Schema.Struct({
description: "Current status of the task: pending, in_progress, completed, cancelled",
}),
priority: Schema.String.annotate({ description: "Priority level of the task: high, medium, low" }),
}).annotate({ identifier: "SessionTodo.Info" })
}).annotate({ identifier: "Todo" })
export type Info = typeof Info.Type
export const Event = {