UNPKG

@moikas/code-audit-mcp

Version:

AI-powered code auditing via MCP using local Ollama models for security, performance, and quality analysis

11 lines 463 B
/** * Testing auditor for testability and test coverage analysis */ import { BaseAuditor } from './base.js'; import type { AuditorConfig } from '../types.js'; import type { OllamaClient } from '../ollama/client.js'; import { ModelManager } from '../ollama/models.js'; export declare class TestingAuditor extends BaseAuditor { constructor(config: AuditorConfig, ollamaClient: OllamaClient, modelManager: ModelManager); } //# sourceMappingURL=testing.d.ts.map