/** * Forgen — Compound Retire (P3) * * `forgen compound retire [--dry-run] [--apply]` * * dead 분류 솔루션을 ~/ .forgen/lab/archived/.md 로 이동. * 기본은 dry-run (목록만 출력). --apply 시 사용자 확인 후 이동. */ export interface RetireResult { retired: string[]; skipped: string[]; dryRun: boolean; } /** dead 솔루션을 lab/archived/ 로 이동 */ export declare function retireDeadSolutions(opts: { dryRun: boolean; yes?: boolean; }): Promise; /** CLI 핸들러: forgen compound retire */ export declare function handleCompoundRetire(args: string[]): Promise;