/** * Standup data aggregator — gathers all data the /standup skill needs * in a single composite call instead of 10-12 individual tool calls. */ import type { ServiceContainer } from '@ido4/core'; import type { StandupData } from './types.js'; export interface StandupAggregatorOptions { containerName?: string; auditHoursBack?: number; } export declare function aggregateStandupData(container: ServiceContainer, options?: StandupAggregatorOptions): Promise; //# sourceMappingURL=standup-aggregator.d.ts.map