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
25 lines • 957 B
TypeScript
/**
* Context Primer Core Module
*
* Contains the main context priming orchestration logic
*/
import { CognitiveCanvas, TaskData } from '../cognitive-canvas';
import { AgentType } from '../orchestrator';
import { WorkspaceManager } from '../workspace';
import { ContextData, ContextPrimingOptions } from './types';
export declare class ContextPrimerCore {
private canvas;
private workspace;
private analysis;
constructor(canvas: CognitiveCanvas, workspace: WorkspaceManager, contractsPath?: string);
primeContext(task: TaskData, agentType: AgentType, projectId: string, options?: ContextPrimingOptions): Promise<ContextData>;
private getArchitecturalDecisions;
private getCodeModules;
private getContracts;
private getRelevantPheromones;
private getTaskDependencies;
private findSimilarTasks;
private getRelevantWorkspaceFiles;
private getRelevantContractSnippets;
}
//# sourceMappingURL=core.d.ts.map