/** * Install Command Handler * * Implements `aiwg install ` for installing frameworks, addons, and * extensions from Git repositories into the local package cache. * * Supported ref formats: * owner/name → Gitea shorthand (configured host) * owner/name@v1.2.0 → Gitea shorthand with version * github:owner/name → GitHub shorthand * github:owner/name@v1.2.0 → GitHub shorthand with version * clawhub:owner/name → ClawHub / OpenClaw registry * openclaw:owner/name → ClawHub alias * https://... → direct Git URL * git@host:owner/name.git → SSH URL * * @implements #557 * @implements #804 */ import type { CommandHandler } from './types.js'; export declare const installHandler: CommandHandler; //# sourceMappingURL=install.d.ts.map