@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 • 713 B
TypeScript
/**
* Composes structured quality-assessment prompts for the CLI and dashboard.
*/
import { type QualityInput, type QualityPayload } from "./compose-quality-common.js";
export { composeArtifactQualityPrompt } from "./compose-quality-artifact.js";
/**
* Compose the quality review prompt. Branching is intentional: the quality mode
* selects a different prompt contract (agent-setup vs the focused modes).
*
* @param input - quality request; `qualityMode` defaults to `agent-setup` when unset
* @returns the composed payload - command, agent, audit status/summary, and prompt text
*/
export declare function composeQuality(input: QualityInput): QualityPayload;
//# sourceMappingURL=compose-quality.d.ts.map