/** * Audit Command - drift audit * * Run pattern audit to detect duplicates, validate cross-references, * and generate approval recommendations. * * @requirements AUDIT-SYSTEM.md */ import { Command } from 'commander'; export interface AuditCommandOptions { /** Generate review report (for agent or human) */ review?: boolean; /** Compare to previous audit */ compare?: string; /** CI mode - exit 1 if health below threshold */ ci?: boolean; /** Health score threshold for CI (default: 85) */ threshold?: number; /** Output format */ format?: 'text' | 'json' | 'markdown'; /** Export audit to file */ export?: string; /** Enable verbose output */ verbose?: boolean; /** Project root directory */ root?: string; } export declare const auditCommand: Command; //# sourceMappingURL=audit.d.ts.map