eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
17 lines (16 loc) • 853 B
TypeScript
import type { ApplyModelOutcome } from "#setup/flows/model.js";
import type { PromptCommandHandler } from "./runner.js";
import type { TuiSetupFlows } from "./setup-commands.js";
export interface PromptCommandHandlerOptions {
readonly appRoot?: string;
/** Test seam; defaults to the model flow's shared source-change apply. */
readonly applyModel?: (input: {
appRoot: string;
slug: string;
}) => Promise<ApplyModelOutcome>;
/** Test seam; defaults to the model flow's external-provider refusal check. */
readonly modelChangeRefusal?: (appRoot: string) => Promise<string | null>;
/** Test seam; forwarded to runTuiSetupCommand's injectable flows. */
readonly flows?: Partial<TuiSetupFlows>;
}
export declare function createPromptCommandHandler(options: PromptCommandHandlerOptions): PromptCommandHandler;