UNPKG

vibe-coder-mcp

Version:

Production-ready MCP server with complete agent integration, multi-transport support, and comprehensive development automation tools for AI-assisted workflows.

20 lines 1.01 kB
import { Command } from 'commander'; export declare function createVibeTasksCLI(): Command; export declare function executeVibeTasksCLI(args?: string[]): Promise<void>; export declare class CLIUtils { static formatOutput(data: unknown, format?: 'table' | 'json' | 'yaml'): string; private static formatArrayAsTable; private static formatObjectAsTable; private static formatObjectAsYaml; static confirm(message: string, defaultValue?: boolean): Promise<boolean>; static error(message: string, exitCode?: number): never; static success(message: string): void; static warning(message: string): void; static info(message: string): void; static validateRequired(params: Record<string, unknown>, required: string[]): void; static parseTags(tagsString?: string): string[]; static formatDate(date: Date | string): string; static truncate(text: string, maxLength?: number): string; static formatBytes(bytes: number): string; } //# sourceMappingURL=index.d.ts.map