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.

16 lines 795 B
import { FileInfo } from './codeMapModel.js'; import { GraphNode, GraphEdge } from './graphBuilder.js'; import { CodeMapGeneratorConfig } from './types.js'; export declare function sanitizeAbsolutePath(absolutePath: string, projectRoot?: string): string; export declare function generateMarkdownOutput(allFilesInfo: FileInfo[], fileDependencyGraph: { nodes: GraphNode[]; edges: GraphEdge[]; }, classInheritanceGraph: { nodes: GraphNode[]; edges: GraphEdge[]; }, functionCallGraph: { nodes: GraphNode[]; edges: GraphEdge[]; }, config: CodeMapGeneratorConfig, jobId: string): Promise<string>; export declare function generateJsonOutput(allFilesInfo: FileInfo[], config: CodeMapGeneratorConfig, _jobId: string): Promise<string>; //# sourceMappingURL=outputGenerator.d.ts.map