MCPcopy
hub / github.com/HKUDS/OpenHarness / KanbanGroup

Interface KanbanGroup

autopilot-dashboard/src/types.ts:72–77  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

70
71/** Grouped kanban columns — vibe-kanban style */
72export interface KanbanGroup {
73 key: string;
74 label: string;
75 color: string;
76 statuses: string[];
77}
78
79export const KANBAN_GROUPS: KanbanGroup[] = [
80 { key: "todo", label: "To Do", color: "#64748b", statuses: ["queued", "accepted"] },

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected