UNPKG

@sethdouglasford/claude-flow

Version:

Claude Code Flow - Advanced AI-powered development workflows with SPARC methodology

35 lines 948 B
#!/usr/bin/env node /** * Claude-Flow CLI Core * Shared functionality for both regular and SEA entry points */ import { Command } from "./cliffy-compat.js"; /** * Create the main CLI command with all subcommands */ export declare function createCLI(): Command; /** * Global error handler */ export declare function handleError(error: unknown, options?: any): Promise<void>; /** * Setup logging and configuration based on CLI options */ export declare function setupLogging(options: any): Promise<void>; /** * Signal handlers for graceful shutdown */ export declare function setupSignalHandlers(): void; /** * Parse global options for error handling */ export declare function parseGlobalOptions(): any; /** * Configure colors based on options */ export declare function configureColors(options: any): void; /** * Main CLI execution function */ export declare function runCLI(): Promise<void>; //# sourceMappingURL=cli-core.d.ts.map