/** * Phase 5: Discovery Summary Tool * * Aggregates insights from previous onboarding phases and presents * findings to the user. Acts as a MANDATORY gate before Phase 6. */ interface SummaryToolInput { confirmed?: boolean; additional_notes?: string; } export interface Tool { name: string; description: string; input_schema: { type: 'object'; properties: Record; required: string[]; }; handler: (input: SummaryToolInput) => Promise>; } /** * Phase 5 Tool: Present Discovery Summary */ export declare const PHASE_5_TOOL: Tool; export {}; //# sourceMappingURL=phase-5-summary.d.ts.map