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.

9 lines 263 B
/** Structured error with an exit code for CLI process termination. */ export class CLIError extends Error { exitCode; constructor(message, exitCode) { super(message); this.exitCode = exitCode; } } //# sourceMappingURL=cli-error.js.map