UNPKG

aiwg

Version:

Deployment tool and support utility for AI context. Copies agents, skills, commands, rules, and behaviors into the paths each AI platform reads (Claude Code, Codex, Copilot, Cursor, Warp, OpenClaw, and 6 more) so one source of truth works across 10 platfo

20 lines 758 B
/** * 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'; /** * Refresh command handler (formerly sync) */ export declare const refreshHandler: CommandHandler; //# sourceMappingURL=refresh.d.ts.map