UNPKG

mcp-codesentry

Version:

CodeSentry MCP - AI-powered code review assistant with 5 specialized review tools for security, best practices, and comprehensive code analysis

13 lines 366 B
/** * Repomix Manager * Handles execution of repomix for codebase flattening */ import { logger } from '../utils/logger.js'; export class RepomixManager { timeout; constructor(timeoutMs = 30000) { this.timeout = timeoutMs; logger.info(`Repomix manager initialized with timeout: ${timeoutMs}ms`); } } //# sourceMappingURL=manager.js.map