@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.
14 lines • 658 B
TypeScript
import type { AuditContext, ContentFinding } from "./types.js";
/**
* Scan release-note surfaces against available manifest snapshots.
* Reports mismatched numeric claims as content findings and skips missing inputs because historical
* release text can exist before a matching snapshot catalog entry.
*
* @param ctx Audit context whose filesystem is rooted at the target project.
* @returns Findings plus the number of release-note files that were actually scanned.
*/
export declare function runSnapshotClaimChecks(ctx: AuditContext): {
findings: ContentFinding[];
filesScanned: number;
};
//# sourceMappingURL=check-snapshot-claims.d.ts.map