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
22 lines • 707 B
TypeScript
import { Driver } from 'neo4j-driver';
/**
* Critique Agent Integration Operations
* Handles operations specific to the Critique agent
*/
export declare class CritiqueAgentIntegration {
private driver;
constructor(driver: Driver);
/**
* Get artifact details by ID (for Critique agent)
*/
getArtifactDetails(artifactId: string): Promise<any>;
/**
* Create critique node (for Critique agent)
*/
createCritiqueNode(critiqueData: any): Promise<string>;
/**
* Link critique to artifact (for Critique agent)
*/
linkCritiqueToArtifact(critiqueId: string, artifactId: string): Promise<void>;
}
//# sourceMappingURL=agent-integration-critique.d.ts.map