/** * Promote Implementation Command — CLI `/pd-promote-impl` * ======================================================== * * PURPOSE: Manually promote a candidate implementation to active status * after replay evaluation review. * * FLOW: * 1. List candidates with replay reports * 2. Show replay report summary for selected candidate * 3. Ask for confirmation * 4. On confirm: transition candidate->active, demote previous active->disabled * * VALIDATION: * - Candidate must have at least one replay report with 'pass' decision * - Only candidate -> active is valid for promotion * - NOTE (PRI-230): The legacy replay generation path has been retired. * This command is temporarily unavailable for implementations without * pre-existing replay reports until a Runtime V2 replay entry is wired. */ import type { PluginCommandContext, PluginCommandResult } from '../openclaw-sdk.js'; export declare function handlePromoteImplCommand(ctx: PluginCommandContext): PluginCommandResult;