UNPKG

capsule-ai-cli

Version:

The AI Model Orchestrator - Intelligent multi-model workflows with device-locked licensing

16 lines 413 B
export interface Command { name: string; description: string; alias?: string[]; execute: (args: string[]) => Promise<CommandResult>; } export interface CommandResult { success: boolean; message?: string; action?: 'exit' | 'clear' | 'new' | 'switch-context' | 'none'; data?: any; } export interface CommandRegistry { [key: string]: Command; } //# sourceMappingURL=types.d.ts.map