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.

20 lines 1 kB
/** * CLI command helpers for regenerating generated learning-loop bucket indexes. */ import type { ParsedCLI } from "../cli-types.js"; /** * Regenerate learning-loop INDEX.md files after a successful install so new projects start with * fresh indexes (and `stats --check` index freshness) without a separate manual `goat-flow index` * run. The installer has just created the bucket directories, so this never creates them itself. * * @param projectPath - target project root whose existing bucket indexes should be regenerated */ export declare function emitIndexGenerationInstallResult(projectPath: string): void; /** * Regenerate the four learning-loop INDEX.md files from bucket content. * Missing bucket directories are skipped rather than created, and user-visible paths stay POSIX-shaped. * * @param options - parsed CLI options carrying the target project and output mode */ export declare function handleIndexCommand(options: ParsedCLI): void; //# sourceMappingURL=command.d.ts.map