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

28 lines 817 B
/** * Model Catalog CLI Commands * * Provides CLI interface for catalog operations: * - list: List all models with filtering * - info: Show detailed model information * - search: Search models by query * * @implements @.aiwg/architecture/enhanced-model-selection-design.md#9-model-catalog-system * @module src/catalog/cli */ /** * Handle 'catalog list' command */ export declare function handleCatalogList(args: string[]): Promise<void>; /** * Handle 'catalog info' command */ export declare function handleCatalogInfo(args: string[]): Promise<void>; /** * Handle 'catalog search' command */ export declare function handleCatalogSearch(args: string[]): Promise<void>; /** * Main catalog command router */ export declare function main(args: string[]): Promise<void>; //# sourceMappingURL=cli.d.ts.map