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.

19 lines 672 B
export interface CodemapCacheResult { content: string; path: string; timestamp: Date; fromCache: boolean; } export declare class CodemapCacheManager { static findRecentCodemap(maxAgeMinutes: number, outputDir?: string): Promise<CodemapCacheResult | null>; static extractTimestampFromFilename(filename: string): Date | null; private static readCodemapWithRetry; static getCacheStats(outputDir?: string): Promise<{ totalCodemaps: number; oldestTimestamp: Date | null; newestTimestamp: Date | null; totalSizeBytes: number; averageAgeMinutes: number; }>; } //# sourceMappingURL=codemap-cache.d.ts.map