/** * kivo audit-quality — Knowledge quality audit command (FR-N03) * * AC coverage: * AC1: Three-dimension evaluation via quality-auditor * AC2: LLM quality scoring 1-5 * AC3: Score ≤ threshold → failing + rewrite suggestion * AC5: --domain to filter by domain * AC6: Quality report (total, distribution, fail rate, top-10 worst) * AC7: All assessment via LLM * AC8: --threshold custom threshold */ export interface AuditQualityOptions { domain?: string; threshold?: number; limit?: number; json?: boolean; cwd?: string; } export declare function runAuditQuality(options?: AuditQualityOptions): Promise; //# sourceMappingURL=cmd-audit-quality.d.ts.map