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.

13 lines 631 B
/** * Per-agent fact extractor - thin composer that delegates to sub-extractors. */ import type { AgentProfile, AgentFacts, ReadonlyFS } from "../../types.js"; /** * Collect all facts for a single agent by delegating to sub-extractors. * * @param fs - project filesystem adapter used by every agent fact extractor * @param agent - agent profile whose instruction, settings, skills, and hooks are inspected * @returns complete agent fact bundle consumed by audit checks and dashboard summaries */ export declare function extractAgentFacts(fs: ReadonlyFS, agent: AgentProfile): AgentFacts; //# sourceMappingURL=index.d.ts.map