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.

14 lines 673 B
/** * Local instruction fact extraction - detects existing project-specific * guidance under `.github/instructions/`. * `.goat-flow/coding-standards/` is user-owned, not framework-managed - ignored here. */ import type { SharedFacts, ReadonlyFS } from "../../types.js"; /** * Extract local-instruction facts from the project instruction surface. * * @param fs - project filesystem adapter used to inspect local instruction files * @returns local instruction presence, flags, router status, and validation details */ export declare function extractLocalInstructions(fs: ReadonlyFS): SharedFacts["localInstructions"]; //# sourceMappingURL=local-instructions.d.ts.map