/** * Auto-warp orchestration for endless loops. * * When a loop is active and the goal budget is exceeded, instead of pausing * we send a hidden message that triggers the root state to call /flow:warp. * The warp frontmatter receives loop context so the new session can resume * seamlessly. */ import type { GoalEntry, LoopState } from "./types.js"; export declare function shouldAutoWarp(cwd: string, goal: GoalEntry): boolean; export declare function buildAutoWarpPrompt(goal: GoalEntry, loop: LoopState): string; //# sourceMappingURL=auto-warp.d.ts.map