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
22 lines • 853 B
TypeScript
/**
* Install Command Handler
*
* Implements `aiwg install <ref>` 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