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

13 lines 648 B
import { CognitiveCanvasBase } from './base'; import { AgentData, TaskData } from './types'; export declare class AgentOperations extends CognitiveCanvasBase { createAgent(agentData: AgentData): Promise<AgentData>; assignAgentToTask(agentId: string, taskId: string): Promise<void>; getAgentAssignments(agentId: string): Promise<TaskData[]>; getAgent(id: string): Promise<AgentData | null>; updateAgentStatus(id: string, status: string): Promise<AgentData>; listAgents(): Promise<AgentData[]>; deleteAgent(id: string): Promise<void>; createSnapshot(): Promise<string>; } //# sourceMappingURL=agent-operations.d.ts.map