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.

10 lines 538 B
import { MatchResult } from "../../types/tools.js"; import { OpenRouterConfig } from "../../types/workflow.js"; export interface EnhancedMatchResult extends MatchResult { parameters: Record<string, string>; matchMethod: "rule" | "intent" | "semantic" | "sequential"; requiresConfirmation: boolean; } export declare function hybridMatch(request: string, config: OpenRouterConfig): Promise<EnhancedMatchResult>; export declare function getMatchExplanation(match: EnhancedMatchResult): string; //# sourceMappingURL=index.d.ts.map