#!/usr/bin/env node /** * Thin CLI entry. Loading the full CLI module graph costs hundreds of * milliseconds, so `agent ` first tries the warm fast path — plan * validation + warm-mount claim + harness spawn via `fast-launch.js` (node * builtins only) — and only then imports the heavy implementation, either to * manage the already-running fast session or to run the full launch. * * Everything that used to live in this file is in `cli-impl.js`; this entry * must stay import-free apart from node builtins or the fast path is * pointless. */ export declare function main(): Promise; //# sourceMappingURL=cli.d.ts.map