import { type WrittenWorkflowPack } from "./write-pack.ts"; export declare const DEEPCODE_WORKFLOW_ID = "deepcode"; export declare const DEEPCODE_TRIGGER = "/deepcode"; /** * The /deepcode workflow body: dynamic-workflow style multi-agent coding. * Parallel read-only explorers map the codebase, a planner freezes a step * plan, one coder implements each step in order (steps share the working * tree, so implementation is deliberately serial), and a verify-fix loop runs * the project check until it passes or stops making progress. */ export declare const DEEPCODE_WORKFLOW_BODY: string; /** The composed single-file component entrypoint (SDK prelude + body). */ export declare function composeDeepcodeEntrypoint(): Promise; /** Write a complete, importable /deepcode optimization pack into `directory`. */ export declare function writeDeepcodePack(directory: string): Promise; //# sourceMappingURL=deepcode.d.ts.map