/** * Work Tracker * * Tracks active work across agents so they can see what others are doing * before attempting delegation. Injected into agent prompts alongside * Agent Availability status. */ export interface ActiveWork { agentId: string; channelId: string; taskSummary: string; startedAt: number; } export declare class WorkTracker { private activeWork; private makeKey; startWork(agentId: string, channelId: string, taskSummary: string): void; completeWork(agentId: string, channelId: string): void; getActiveWork(): ActiveWork[]; buildWorkSection(excludeAgentId: string): string; } //# sourceMappingURL=work-tracker.d.ts.map