UNPKG

@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.

17 lines 855 B
import type { AuditContext, ContentFinding } from "./types.js"; /** * Targeted semantic drift checks for high-trust cold-path docs. * * Missing optional docs recover by being skipped, while readable docs are added * to the scanned count so audit output reflects the actual coverage. * * @param ctx - audit context; its readonly FS reads both the curated docs and the live source files * (classify-state, terminal server, manifest) the docs are checked against * @returns the accumulated drift findings and the count of docs actually read, so callers can report * coverage; an empty findings list means no drift was detected among the docs present on disk */ export declare function scanSemanticDrift(ctx: AuditContext): { findings: ContentFinding[]; filesScanned: number; }; //# sourceMappingURL=check-factual-semantic-drift.d.ts.map