/** * Harness Auditor - Evaluates project harness setup against OpenAI Codex standards * * Based on: https://openai.com/index/unlocking-the-codex-harness/ * * Categories: * 1. Context — AGENTS.md, ARCHITECTURE.md, docs/, progressive disclosure * 2. Bootstrap — One-command setup, reproducible environment, task entry points * 3. Constraints — Linter, formatter, pre-commit, architectural enforcement * 4. Eval & CI — CI pipeline, tests, coverage, regression * 5. Entropy Management — Tech debt tracking, pattern enforcement * 6. Safety — Secrets, .gitignore, security docs * 7. Knowledge — ADRs, decision records, in-repo knowledge * 8. Workflow — specs/, tasks/ directories */ import type { AuditReport, HarnessConfig } from "./types.js"; /** Load .harness.json (falls back to standard preset if not found) */ export declare function loadConfig(projectPath: string): HarnessConfig; /** Run a harness audit on the given project path */ export declare function audit(projectPath: string, config?: HarnessConfig): AuditReport; /** Format an audit report as readable text */ export declare function formatReport(report: AuditReport): string; /** Detailed score report by category */ export declare function formatScore(report: AuditReport): string; //# sourceMappingURL=auditor.d.ts.map