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

33 lines 997 B
import { Driver } from 'neo4j-driver'; /** * General Agent Integration Operations * Handles common operations shared across multiple agents */ export declare class GeneralAgentIntegration { private driver; constructor(driver: Driver); /** * Get project context (for various agents) */ getProjectContext(projectId: string): Promise<any>; /** * Create knowledge entry (for general knowledge management) */ createKnowledgeEntry(projectId: string, entryData: { type: string; data?: any; timestamp: Date; }): Promise<void>; /** * Get knowledge entries by type */ getKnowledgeEntriesByType(projectId: string, type: string): Promise<any[]>; /** * Get knowledge entries by query with filtering */ getKnowledgeEntriesByQuery(projectId: string, query: { type?: string; filter?: Record<string, any>; }): Promise<any[]>; } //# sourceMappingURL=agent-integration-general.d.ts.map