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.

15 lines 743 B
export interface CommentContext { type: 'file' | 'class' | 'method' | 'property' | 'function' | 'import'; name?: string; parentClass?: string; } export interface EnhancedContext { structural: CommentContext; domains: string[]; confidence: number; } export declare function detectFullContext(comment: string, structuralContext?: CommentContext): EnhancedContext; export declare function extractSemanticKeywords(comment: string, context?: CommentContext): string[]; export declare function compressSemanticContent(comment: string, keywords: string[]): string; export declare function selectBestKeywords(comment: string, maxLength: number, context?: CommentContext): string; //# sourceMappingURL=semanticExtractor.d.ts.map