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

46 lines 1.6 kB
import { Driver } from 'neo4j-driver'; /** * Knowledge Updater Agent Integration Operations * Handles operations specific to the KnowledgeUpdater agent */ export declare class KnowledgeUpdaterAgentIntegration { private driver; constructor(driver: Driver); /** * Get task details (for KnowledgeUpdater agent) */ getTaskDetails(taskId: string): Promise<any>; /** * Get related knowledge (for KnowledgeUpdater agent) */ getRelatedKnowledge(taskId: string): Promise<any[]>; /** * Create knowledge extraction (for KnowledgeUpdater agent) */ createKnowledgeExtraction(extractionData: any): Promise<string>; /** * Link knowledge extraction to task (for KnowledgeUpdater agent) */ linkKnowledgeToTask(knowledgeId: string, taskId: string): Promise<void>; /** * Update pheromone strengths (for KnowledgeUpdater agent) */ updatePheromoneStrengths(updates?: any): Promise<void>; /** * Get project knowledge (for KnowledgeUpdater agent) */ getProjectKnowledge(projectId: string): Promise<any[]>; /** * Validate knowledge consistency (for KnowledgeUpdater agent) */ validateKnowledgeConsistency(projectId: string): Promise<any[]>; /** * Identify knowledge gaps (for KnowledgeUpdater agent) */ identifyKnowledgeGaps(projectId: string): Promise<any[]>; /** * Update project metrics (for KnowledgeUpdater agent) */ updateProjectMetrics(projectId: string, metrics: any): Promise<void>; } //# sourceMappingURL=agent-integration-knowledge.d.ts.map