UNPKG

vibe-coder-mcp

Version:

Production-ready MCP server with complete agent integration, multi-transport support, and comprehensive development automation tools for AI-assisted workflows.

26 lines 1.33 kB
import { Intent, RecognizedIntent } from '../../types/nl.js'; import { CommandHandler, CommandExecutionContext, CommandExecutionResult } from '../command-handlers.js'; export declare class DecomposeTaskHandler implements CommandHandler { intent: Intent; private resolveProjectPath; handle(recognizedIntent: RecognizedIntent, toolParams: Record<string, unknown>, context: CommandExecutionContext): Promise<CommandExecutionResult>; private extractTaskId; private extractAdditionalContext; private extractDecompositionOptions; } export declare class DecomposeEpicHandler implements CommandHandler { intent: Intent; private resolveProjectPath; handle(recognizedIntent: RecognizedIntent, toolParams: Record<string, unknown>, context: CommandExecutionContext): Promise<CommandExecutionResult>; private extractEpicId; private extractAdditionalContext; private extractDecompositionOptions; } export declare class DecomposeProjectHandler implements CommandHandler { intent: Intent; private resolveProjectPath; handle(recognizedIntent: RecognizedIntent, toolParams: Record<string, unknown>, context: CommandExecutionContext): Promise<CommandExecutionResult>; private extractProjectId; private extractAdditionalContext; } //# sourceMappingURL=decomposition-handlers.d.ts.map