@blundergoat/goat-flow
Version:
AI coding agent harness and local dashboard for Claude Code, OpenAI Codex, Google Antigravity, and GitHub Copilot - setup audits, guardrails, structured skills, deny hooks, and persistent learning loops.
18 lines • 764 B
TypeScript
import type { AuditReport } from "./types.js";
export { renderAuditSarif } from "./sarif.js";
/**
* Render the full audit report in the terminal text format.
*
* @param report - Audit report produced by `runAudit` or `runAuditBatch`.
* @returns Human-readable terminal output with ANSI status labels.
*/
export declare function renderAuditText(report: AuditReport): string;
export declare function renderAuditJson(report: AuditReport): string;
/**
* Render the full audit report in markdown.
*
* @param report - Audit report produced by `runAudit` or `runAuditBatch`.
* @returns Markdown suitable for PR comments and copied audit summaries.
*/
export declare function renderAuditMarkdown(report: AuditReport): string;
//# sourceMappingURL=render.d.ts.map