UNPKG

automagik-cli

Version:

Automagik CLI - A powerful command-line interface for interacting with Automagik Hive multi-agent AI systems

12 lines (11 loc) 521 B
export interface ServerStatus { isRunning: boolean; url: string; health?: any; error?: string; isAuthenticated?: boolean; authError?: string; } export declare function detectAPIServer(baseUrl: string): Promise<ServerStatus>; export declare function generateStartupGuide(serverStatus: ServerStatus): string; export declare function waitForServerStartup(baseUrl: string, maxAttempts?: number, intervalMs?: number, onProgress?: (attempt: number, maxAttempts: number) => void): Promise<ServerStatus>;