/** * Refresh Command Handler (formerly Sync) * * Ensures the active session's AIWG deployment matches the latest published * version under the current provider. Orchestrates: version check → update → * re-deploy all installed frameworks → health verification. * * Renamed from `aiwg sync` to `aiwg refresh` to avoid collision with * git repo sync semantics (#694). `aiwg sync` remains as a deprecated alias. * * @implements @agentic/code/frameworks/sdlc-complete/rules/self-maintenance.md * @source @src/cli/router.ts * @issue #482, #557, #694 */ import type { CommandHandler } from './types.js'; export declare function currentBundledAgentBasenames(frameworkRoot: string): Promise>; export declare function pruneStaleManagedAgentFiles(options: { projectRoot: string; frameworkRoot: string; provider?: string; dryRun?: boolean; }): Promise; /** * Refresh command handler (formerly sync) */ export declare const refreshHandler: CommandHandler; //# sourceMappingURL=refresh.d.ts.map