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

24 lines 956 B
import { CognitiveCanvas } from '../../cognitive-canvas'; import { PatternAnalysis, PheromoneInput } from './types'; /** * PheromoneGenerator handles pheromone creation and management for the Reflector agent */ export declare class PheromoneGenerator { private cognitiveCanvas; private config; private currentTask; constructor(cognitiveCanvas: CognitiveCanvas | null, config: any | null, currentTask: any | null); /** * Generate guide and warning pheromones based on pattern analysis */ generatePheromones(patterns: PatternAnalysis): Promise<PheromoneInput[]>; /** * Create pheromones in Cognitive Canvas */ createPheromones(pheromones: PheromoneInput[]): Promise<void>; /** * Update references for dependency injection */ updateReferences(cognitiveCanvas: CognitiveCanvas | null, config: any | null, currentTask: any | null): void; } //# sourceMappingURL=pheromone-generator.d.ts.map