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

20 lines 1.14 kB
/** * Cognitive Canvas Navigator Agent - Main Entry Point * * This file serves as the main entry point for the Cognitive Canvas Navigator Agent, * refactored to use a modular structure to maintain the 500-line limit per file. * * Modular structure: * - types.ts - All interfaces and type definitions * - navigator-agent.ts - Main navigation logic and orchestration * - cache-manager.ts - Advanced caching and memory management * - query-optimizer.ts - Query optimization and natural language processing * - performance-monitor.ts - Performance monitoring and analytics */ export { CognitiveCanvasNavigatorAgent } from './navigator-agent'; export type { NavigationQuery, NavigationFilter, NavigationResult, KnowledgeNode, KnowledgeRelationship, NavigationPath, NavigationInsight, PerformanceMetrics, CacheEntry, QueryPlan } from './types'; export { CacheManager } from './cache-manager'; export { QueryOptimizer } from './query-optimizer'; export { PerformanceMonitor } from './performance-monitor'; export { CognitiveCanvasNavigatorAgent as CognitiveCanvasNavigator } from './navigator-agent'; //# sourceMappingURL=index.d.ts.map