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
15 lines • 646 B
TypeScript
import { Driver } from 'neo4j-driver';
import { Neo4jConfig } from './types';
export declare abstract class CognitiveCanvasBase {
protected driver: Driver;
protected autoSaveInterval?: NodeJS.Timeout;
protected snapshotsDir: string;
constructor(config: Neo4jConfig, snapshotsDir?: string);
initializeSchema(): Promise<void>;
protected executeQuery<T>(query: string, params?: any, returnKey?: string): Promise<T | null>;
close(): Promise<void>;
startAutoSave(intervalMs?: number): Promise<void>;
stopAutoSave(): Promise<void>;
abstract createSnapshot(): Promise<string>;
}
//# sourceMappingURL=base.d.ts.map