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
23 lines • 806 B
TypeScript
import { CognitiveCanvas } from '../../cognitive-canvas';
import { QualityAnalysis } from './types';
/**
* QualityAnalyzer handles test results and quality analysis for the Governor agent
*/
export declare class QualityAnalyzer {
private cognitiveCanvas;
private currentTask;
constructor(cognitiveCanvas: CognitiveCanvas | null, currentTask: any | null);
/**
* Analyze test results and quality reports
*/
analyzeTestResults(): Promise<QualityAnalysis>;
/**
* Calculate quality score based on test results
*/
private calculateQualityScore;
/**
* Update cognitive canvas and current task references
*/
updateReferences(cognitiveCanvas: CognitiveCanvas | null, currentTask: any | null): void;
}
//# sourceMappingURL=quality-analyzer.d.ts.map