mcp-codesentry
Version:
CodeSentry MCP - AI-powered code review assistant with 5 specialized review tools for security, best practices, and comprehensive code analysis
19 lines (15 loc) • 464 B
text/typescript
/**
* Repomix Manager
* Handles execution of repomix for codebase flattening
*/
import { logger } from '../utils/logger.js';
export class RepomixManager {
private timeout: number;
constructor(timeoutMs: number = 30000) {
this.timeout = timeoutMs;
logger.info(`Repomix manager initialized with timeout: ${timeoutMs}ms`);
}
// TODO: Implement repomix execution via npx
// TODO: Implement output parsing
// TODO: Implement error handling
}