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

38 lines 1.14 kB
import { TaskData } from '../cognitive-canvas'; import { AgentType } from './workflow-manager'; import { TaskExecutionContext } from './task-executor'; /** * Agent Prompt Generator * Handles generation of prompts for different agent types */ export declare class AgentPromptGenerator { /** * Generate agent prompt with context */ generateAgentPrompt(task: TaskData, agentType: AgentType, context?: TaskExecutionContext): string; /** * Generate CodeSavant prompt */ generateCodeSavantPrompt(taskId: string, originalContext: string): string; /** * Generate Debugger prompt */ generateDebuggerPrompt(taskId: string, errorContext: any): string; /** * Generate Critique prompt */ generateCritiquePrompt(taskId: string, errorContext: any): string; /** * Generate base prompt for agent */ private generateBasePrompt; /** * Get agent-specific prompt content */ private getAgentSpecificPrompt; /** * Format context data for prompts */ private formatContextData; } //# sourceMappingURL=agent-prompt-generator.d.ts.map