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

11 lines 532 B
import { CognitiveCanvasBase } from './base'; import { ProjectData } from './types'; export declare class ProjectOperations extends CognitiveCanvasBase { createProject(projectData: ProjectData): Promise<ProjectData>; getProject(id: string): Promise<ProjectData | null>; updateProjectStatus(id: string, status: string): Promise<ProjectData>; deleteProject(id: string): Promise<void>; listProjects(): Promise<ProjectData[]>; createSnapshot(): Promise<string>; } //# sourceMappingURL=project-operations.d.ts.map