feat: Implement Today's Workflow and Agent Huddle enhancements

This commit is contained in:
ajaysi
2026-03-01 20:15:31 +05:30
parent 62d9c2e836
commit f8f7ddeb2a
25 changed files with 1852 additions and 272 deletions

View File

@@ -19,7 +19,12 @@ export interface TodayTask {
actionType: ActionType;
completedAt?: Date;
startedAt?: Date;
metadata?: Record<string, any>;
metadata?: {
source_agent?: string;
reasoning?: string;
context_data?: any;
[key: string]: any;
};
icon?: string | React.ComponentType<any>; // icon name or component reference
color?: string;
enabled: boolean;