UNPKG

cc-enhance

Version:

Adaptive prompt intelligence with 25-step selection, CLAUDE.md adherence, MCP tool orchestration, parallel execution and memory integration for Claude Code

34 lines 1.03 kB
export interface Agent { name: string; description: string; tools?: string[]; location: 'user' | 'project' | 'builtin'; filepath?: string; } export interface AgentSuggestion { taskType: string; suggestedAgent?: Agent; createProposal?: { name: string; description: string; tools: string[]; prompt: string; }; } /** * Detect all available agents in the system */ export declare function detectAgents(projectPath?: string): Promise<Agent[]>; /** * Match task type to appropriate agent or suggest creating one */ export declare function matchAgentToTask(taskType: string, taskDescription: string, availableAgents: Agent[]): AgentSuggestion; /** * Format agent suggestions for inclusion in enhanced prompts */ export declare function formatAgentSuggestions(suggestion: AgentSuggestion): string; /** * Add parallel execution markers to tasks */ export declare function addParallelMarkers(requirements: string[]): string[]; //# sourceMappingURL=agents.d.ts.map