@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 • 819 B
TypeScript
/** Decision-bucket markdown classification shared by stats and fact extractors. */
/** Non-ADR markdown files that legitimately live in `.goat-flow/learning-loop/decisions/`. */
export declare const DECISION_META_FILES: Set<string>;
/**
* Return true for ADR decision records, excluding README/INDEX metadata files.
* Use when separating real decision records from bucket metadata while counting
* or extracting facts from `.goat-flow/learning-loop/decisions/`.
*
* @param fileName - Base file name (not a full path) to classify.
* @returns `true` when the file is a `.md` decision record, `false` for the
* README/INDEX metadata files in {@link DECISION_META_FILES} or non-markdown.
*/
export declare function isDecisionRecordMarkdown(fileName: string): boolean;
//# sourceMappingURL=decision-files.d.ts.map