/** * Agent command - Run a single agent with instructions * * Usage: * praisonai-ts agent chat "Hello, how are you?" * praisonai-ts agent run --instructions "You are helpful" "Tell me a joke" */ export interface AgentOptions { instructions?: string; model?: string; stream?: boolean; verbose?: boolean; profile?: string; config?: string; output?: 'json' | 'text' | 'pretty'; json?: boolean; sessionId?: string; } /** * Execute agent chat subcommand */ export declare function executeChat(args: string[], options: AgentOptions): Promise; /** * Execute agent run subcommand (same as chat but requires instructions) */ export declare function executeRun(args: string[], options: AgentOptions): Promise; /** * Main execute function - routes to subcommands */ export declare function execute(args: string[], options: AgentOptions): Promise;