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

18 lines 1.15 kB
import { CognitiveCanvasBase } from './base'; export declare class AgentSupportOperations extends CognitiveCanvasBase { getArtifactDetails(artifactId: string): Promise<any>; createCritiqueNode(critiqueData: any): Promise<string>; linkCritiqueToArtifact(critiqueId: string, artifactId: string): Promise<void>; getFailureById(failureId: string): Promise<any>; getRelatedArtifacts(failureId: string): Promise<any[]>; createDiagnosticNode(diagnosticData: any): Promise<string>; getTaskContext(taskId: string): Promise<any>; getRelatedKnowledge(taskId: string): Promise<any[]>; createKnowledgeExtraction(extractionData: any): Promise<string>; getProjectContext(projectId: string): Promise<any>; linkContractToFeature(contractId: string, featureId: string): Promise<void>; linkContractToCodeModule(contractId: string, codeModuleId: string, relationshipType?: 'IMPLEMENTS' | 'USES'): Promise<void>; linkContractToTest(contractId: string, testId: string, relationshipType?: 'VALIDATES' | 'TESTS'): Promise<void>; createSnapshot(): Promise<string>; } //# sourceMappingURL=agent-support-operations.d.ts.map