summaryrefslogtreecommitdiffhomepage
path: root/src/features/surface-host/ui/TodoList.svelte
AgeCommit message (Collapse)Author
5 daysfix(ui): shrink tabs to 40vh and tasks to 30vh fixed heightAdam Malczewski
5 daysfix(tasks): keep fixed 60vh height even with 0 tasksAdam Malczewski
5 daysfix(tasks): fixed height 60vh with scrollbar on overflowAdam Malczewski
7 daysstyle: switch from tabs to 2-space indentation (incl. svelte)Adam Malczewski
12 daysrefactor(todo): drop priority field — keep the tool simpleAdam Malczewski
Backend removed priority from TodoItem; FE parser + renderer updated to match (status-only: pending/in_progress/completed/cancelled).
12 daysfix(todo): use static filled circle for in_progress instead of spinnerAdam Malczewski
12 daysfeat(surfaces): todo task list sidebar viewAdam Malczewski
Add a dedicated "Tasks" sidebar view for the per-conversation todo surface (model-maintained via todo_write tool; read-only, conversation-scoped). - parseTodoPayload: pure parser for the rendererId: "todo" custom field (TodoItem { content, status, priority } — types defined FE-side, not in wire) - TodoList.svelte: renders the task list with status indicators (spinner for in_progress, checkmark for completed, X for cancelled, empty circle for pending) + priority dots (red/yellow/gray) - SurfaceView dispatches rendererId: "todo" to TodoList - App.svelte: "Tasks" view kind (always visible; "No tasks yet" empty state), todo surface pulled out of the generic Extensions list, re-mounts per conversation via {#key} 681 tests green.