/** * Task execution data aggregator — gathers all context an agent needs * to execute a task: spec, upstream dependencies, epic siblings, * downstream dependents, and epic progress. */ import type { ServiceContainer } from '@ido4/core'; import type { TaskExecutionData } from './types.js'; export interface TaskExecutionAggregatorOptions { issueNumber: number; includeComments?: boolean; } export declare function aggregateTaskExecutionData(container: ServiceContainer, options: TaskExecutionAggregatorOptions): Promise; //# sourceMappingURL=task-execution-aggregator.d.ts.map