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.

19 lines 843 B
import { EnhancementConfig } from '../config/enhancementConfig.js'; import { CommentContext } from './semanticExtractor.js'; export declare class CommentProcessor { private config; constructor(config: EnhancementConfig); processComment(comment: string | undefined, context?: CommentContext): string; processComments(comments: Array<{ comment?: string; context?: CommentContext; }>): string[]; isEnabled(): boolean; getMaxContentLength(): number; private compressWithSemanticPreservation; private cleanComment; } export declare function createCommentProcessor(): CommentProcessor; export declare function processComment(comment: string | undefined, context?: CommentContext): string; export type { CommentContext } from './semanticExtractor.js'; //# sourceMappingURL=commentProcessor.d.ts.map