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
24 lines • 956 B
TypeScript
/**
* Main Cognitive Canvas Navigator Agent - Orchestrates navigation and query execution
*/
import { Agent, AgentConfig } from '../../agent';
import { NavigationResult, PerformanceMetrics } from './types';
export declare class CognitiveCanvasNavigatorAgent extends Agent {
private cacheManager;
private queryOptimizer;
private performanceMonitor;
constructor();
initialize(config: AgentConfig): Promise<void>;
getPromptTemplate(): string;
executeTask(): Promise<NavigationResult>;
translateNaturalLanguageToCypher(nlQuery: string, context?: Record<string, any>): Promise<string>;
getPerformanceMetrics(): PerformanceMetrics;
private executeOptimizedNavigation;
private parseNavigationQuery;
private executeQueryByType;
private buildTypeSpecificPrompt;
private applyResultOptimizations;
private parseNavigationResult;
private isQueryTargeted;
}
//# sourceMappingURL=navigator-agent.d.ts.map