export type KanbanStatus = 'triage' | 'todo' | 'ready' | 'running' | 'blocked' | 'done' | 'archived' export type Task = { id: string title: string status: KanbanStatus | string assignee?: string | null priority?: number | null age?: string | null body?: string | null created_at?: number | null started_at?: number | null } export type TaskGroups = Record export type Event = Record & { kind?: string } export type Run = Record & { id?: number | string; status?: string }