import type { ToolCall } from "../../types.js"; export interface ConfirmationPort { confirmTool(call: ToolCall): Promise; confirmPentest(): Promise; confirmAgentSwitch?(info: { reason: string; tools: string[]; }): Promise; }