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.

31 lines 872 B
export const QUALITY_REPORT_KIND = "goat-flow-quality-report"; export const QUALITY_FINDING_TYPES = [ "setup_quality", "skill_flaw", "contradiction", "false_path", "content_quality", "framework_flaw", ]; export const QUALITY_FINDING_SEVERITIES = [ "BLOCKER", "MAJOR", "MINOR", ]; export const QUALITY_EVIDENCE_QUALITIES = ["OBSERVED", "INFERRED"]; export const QUALITY_EVIDENCE_METHODS = [ "runtime-probe", "static-analysis", "mixed", ]; export const QUALITY_SCOPES = ["framework-self", "consumer"]; export const QUALITY_MODES = [ "process", "agent-setup", "harness", "skills", ]; export const QUALITY_DELTA_TAGS = ["new", "persisted"]; export const QUALITY_AUDIT_STATUSES = ["pass", "fail", "unavailable"]; export const QUALITY_SCORE_VALUES = [0, 5, 10, 15, 20, 25]; //# sourceMappingURL=schema-types.js.map