framework
Version:
The (AI) Framework: turnkey, zero-config AI orchestration that wraps a coding-agent CLI (Claude Code) as a black box and takes you from an idea to a running app. Vite for AI.
15 lines • 930 B
TypeScript
import { FakeDriver, type FakeTurn } from './driver/index.js';
/**
* The deterministic fake scenario: a small Vike + Prisma orders app.
* It wires a {@link FakeDriver} whose scripted turns walk the exact prompt order
* the flow issues — one build turn (#1372: with no preset and no serve config
* nothing reviews the build, so the build is the whole loop) — so the flow runs
* offline with no CLI and no model, driven entirely *through* the driver seam.
*/
/** The default intent the fake demo builds. */
export declare const FAKE_INTENT = "A paginated orders page backed by an orders table, with sign-in.";
/** Scripted turns for the demo, optionally routed through a turn-boundary gate. */
export declare function demoTurns(awaitMode: string | undefined): FakeTurn[];
/** Build the scripted {@link FakeDriver} for the demo. */
export declare function fakeDriver(): FakeDriver;
//# sourceMappingURL=fake-script.d.ts.map