vibe-coder-mcp
Version:
Production-ready MCP server with complete agent integration, multi-transport support, and comprehensive development automation tools for AI-assisted workflows.
20 lines • 1.09 kB
TypeScript
import { Intent, RecognizedIntent } from '../../types/nl.js';
import { CommandHandler, CommandExecutionContext, CommandExecutionResult } from '../command-handlers.js';
export declare class ParsePRDHandler implements CommandHandler {
intent: Intent;
handle(recognizedIntent: RecognizedIntent, toolParams: Record<string, unknown>, context: CommandExecutionContext): Promise<CommandExecutionResult>;
private extractProjectName;
private extractFilePath;
}
export declare class ParseTasksHandler implements CommandHandler {
intent: Intent;
handle(recognizedIntent: RecognizedIntent, toolParams: Record<string, unknown>, context: CommandExecutionContext): Promise<CommandExecutionResult>;
private extractProjectName;
private extractFilePath;
}
export declare class ImportArtifactHandler implements CommandHandler {
intent: Intent;
handle(recognizedIntent: RecognizedIntent, toolParams: Record<string, unknown>, context: CommandExecutionContext): Promise<CommandExecutionResult>;
private extractArtifactType;
}
//# sourceMappingURL=artifact-handlers.d.ts.map