eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
20 lines (19 loc) • 1.1 kB
TypeScript
/** Ordered `agent-prompt/` sections composed into the pre-scaffold setup guide. */
export declare const SETUP_SECTIONS: readonly ["intro-setup.md", "collect-intent.md", "vercel-connect.md", "scaffold.md", "build-and-verify.md"];
/** Ordered `agent-prompt/` sections composed into the post-scaffold handoff. */
export declare const HANDOFF_SECTIONS: readonly ["intro-handoff.md", "collect-intent.md", "vercel-connect.md", "build-and-verify.md"];
/**
* The pre-scaffold setup guide, shown when a coding agent runs a bare
* `eve init`. It scaffolds from scratch, so it renders with the universal
* `npx eve dev` rather than a launcher-specific command.
*/
export declare function initAgentInstructions(): string;
/** The post-scaffold handoff printed after a coding agent runs `eve init <name>`. */
export declare function initAgentDevHandoff(options: {
projectPath: string;
devCommand: string;
}): string;
/** The initial prompt for a coding-agent REPL opened inside the scaffolded project. */
export declare function initAgentReplPrompt(options: {
devCommand: string;
}): string;