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 908 B
import { CognitiveCanvas } from '../../cognitive-canvas'; import { PromptAnalysis } from './types'; /** * PromptAnalyzer handles prompt performance analysis for the Reflector agent */ export declare class PromptAnalyzer { private cognitiveCanvas; private currentTask; constructor(cognitiveCanvas: CognitiveCanvas | null, currentTask: any | null); /** * Analyze prompt performance correlation */ analyzePromptPerformance(): Promise<PromptAnalysis>; /** * Generate recommendations based on prompt analysis */ private generatePromptRecommendations; /** * Check if prompt analysis should be performed */ shouldAnalyzePrompts(): boolean; /** * Update references for dependency injection */ updateReferences(cognitiveCanvas: CognitiveCanvas | null, currentTask: any | null): void; } //# sourceMappingURL=prompt-analyzer.d.ts.map