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

27 lines 2.01 kB
"use strict"; /** * Cognitive Canvas Navigator Agent - Main Entry Point * * This file serves as the main entry point for the Cognitive Canvas Navigator Agent, * now refactored to use a modular structure to maintain the 500-line limit per file. * * Modular structure: * - cognitive-canvas-navigator/types.ts - All interfaces and type definitions * - cognitive-canvas-navigator/navigator-agent.ts - Main navigation logic and orchestration * - cognitive-canvas-navigator/cache-manager.ts - Advanced caching and memory management * - cognitive-canvas-navigator/query-optimizer.ts - Query optimization and natural language processing * - cognitive-canvas-navigator/performance-monitor.ts - Performance monitoring and analytics */ Object.defineProperty(exports, "__esModule", { value: true }); exports.PerformanceMonitor = exports.QueryOptimizer = exports.CacheManager = exports.CognitiveCanvasNavigator = exports.CognitiveCanvasNavigatorAgent = void 0; // Re-export the main agent class and all related types/interfaces var index_1 = require("./cognitive-canvas-navigator/index"); Object.defineProperty(exports, "CognitiveCanvasNavigatorAgent", { enumerable: true, get: function () { return index_1.CognitiveCanvasNavigatorAgent; } }); Object.defineProperty(exports, "CognitiveCanvasNavigator", { enumerable: true, get: function () { return index_1.CognitiveCanvasNavigatorAgent; } }); Object.defineProperty(exports, "CacheManager", { enumerable: true, get: function () { return index_1.CacheManager; } }); Object.defineProperty(exports, "QueryOptimizer", { enumerable: true, get: function () { return index_1.QueryOptimizer; } }); Object.defineProperty(exports, "PerformanceMonitor", { enumerable: true, get: function () { return index_1.PerformanceMonitor; } }); // Maintain backward compatibility by providing a default export const index_2 = require("./cognitive-canvas-navigator/index"); exports.default = index_2.CognitiveCanvasNavigatorAgent; //# sourceMappingURL=cognitive-canvas-navigator.js.map