/** * add_phase tool * * Agent tool to add a new phase to the current mission run. * Auto-generates phase_id ("phase1", "phase2", ...). * Sets status to "pending". * * Used by: mission-pm skill */ export interface AddPhaseParams { name: string; file: string; } export interface AddPhaseResult { success: boolean; message: string; phaseId: string | null; errors: string[]; } /** * Add a phase to the active mission run * * @param params.name - Human-readable phase name (e.g., "Auth Backend") * @param params.file - Path to phase definition/reference file * @returns Result with generated phase_id */ export declare function addPhase(params: AddPhaseParams): AddPhaseResult; //# sourceMappingURL=add-phase.d.ts.map