@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.
11 lines • 551 B
TypeScript
import type { ReadonlyFS } from "../types.js";
/**
* Create a read-only filesystem abstraction rooted at the given path.
* The adapter centralizes defensive filesystem handling because audit callers need stable null,
* false, or empty-list results instead of platform-specific errno throws.
*
* @param rootPath Directory that relative fact reads resolve against.
* @returns Cached, non-mutating filesystem helpers for audit and fact extraction.
*/
export declare function createFS(rootPath: string): ReadonlyFS;
//# sourceMappingURL=fs.d.ts.map