UNPKG

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

19 lines 700 B
/** * Performance Monitoring and Analytics for Cognitive Canvas Navigator */ import { PerformanceMetrics } from './types'; export declare class PerformanceMonitor { private metrics; private queryTimes; private monitoringInterval?; startPerformanceMonitoring(): void; stopPerformanceMonitoring(): void; updateMetrics(queryTime: number, cacheHit: boolean): void; updatePerformanceMetrics(): void; updateMemoryUsage(cacheSize: number): void; updateCacheHitRatio(ratio: number): void; updateOptimizationCount(count: number): void; getPerformanceMetrics(): PerformanceMetrics; private cleanupOldMetrics; } //# sourceMappingURL=performance-monitor.d.ts.map