cortexweaver
Version:
CortexWeaver is a command-line interface (CLI) tool that orchestrates a swarm of specialized AI agents, powered by Claude Code and Gemini CLI, to assist in software development. It transforms a high-level project plan (plan.md) into a series of coordinate
22 lines • 740 B
TypeScript
/**
* Advanced Caching and Memory Management for Cognitive Canvas Navigator
*/
import { NavigationResult } from './types';
export declare class CacheManager {
private cache;
private readonly maxCacheSize;
private readonly defaultTTL;
private cacheHits;
private cacheMisses;
getAdvancedCachedResult(key: string): NavigationResult | null;
storeIntelligentCache(key: string, result: NavigationResult, cost: number): void;
private performIntelligentEviction;
private calculateEvictionScore;
getCacheMetrics(): {
cacheHitRatio: number;
cacheSize: number;
memoryUsage: number;
};
generateOptimizedCacheKey(query: any): string;
}
//# sourceMappingURL=cache-manager.d.ts.map