export interface StarterFile { path: string; contents: string; plane: "source"; } export interface RuntimeDirectory { path: string; plane: "runtime"; } export declare const starterFiles: StarterFile[]; export declare const runtimeDirectories: RuntimeDirectory[]; export declare const humanishScripts: Record; /** * The starter files, with the live lab written for the brain this machine can use. * * `local-agent` is not a variant of the lab so much as a different participant: on a machine with * a signed-in Codex and no provider key, the study runs with the operator's own agent and needs * only E2B. Writing the other one there would hand someone homework instead of a first run. */ export declare function starterFilesFor(actor: "openai-computer-use" | "local-agent"): StarterFile[];