MCPcopy
hub / github.com/dataelement/Clawith / Task

Interface Task

frontend/src/types/index.ts:59–77  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

57}
58
59export interface Task {
60 id: string;
61 agent_id: string;
62 title: string;
63 description?: string;
64 type: 'todo' | 'supervision';
65 status: 'pending' | 'doing' | 'done' | 'paused';
66 priority: 'low' | 'medium' | 'high' | 'urgent';
67 assignee: string;
68 created_by: string;
69 creator_username?: string;
70 due_date?: string;
71 supervision_target_name?: string;
72 supervision_channel?: string;
73 remind_schedule?: string;
74 created_at: string;
75 updated_at: string;
76 completed_at?: string;
77}
78
79export interface ChatMessage {
80 id: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected