/** * Phase 9: Onboarding Finalization * * Final phase that: * - Saves all profile files to markdown * - Generates quick-start.md guide * - Sends welcome message * - Calls onComplete callback to exit onboarding mode */ import type { ToolDefinition } from '../agent/types.js'; interface FinalizationInput { confirmed?: boolean; session_id?: string; } /** * Create the Phase 9 finalization tool */ export declare function createPhase9Tool(onComplete: () => void): ToolDefinition & { handler: (input: FinalizationInput) => Promise>; }; /** * Export PHASE_9_TOOL for backward compatibility * (without handler, just the tool definition) */ export declare const PHASE_9_TOOL: ToolDefinition; export {}; //# sourceMappingURL=phase-9-finalization.d.ts.map