/** * Blueprint stage adapter for pipeline orchestrator. * * Wraps the consensus planning workflow (planner + architect + critic) * into a PipelineStage. Produces a plan artifact at `.rcs/plans/`. */ import type { PipelineStage } from '../types.js'; import { type BlueprintConsensusExecutor } from '../../blueprint/runtime.js'; export interface CreateBlueprintStageOptions { executor?: BlueprintConsensusExecutor; maxIterations?: number; } /** * Create a blueprint pipeline stage. * * The BLUEPRINT stage performs consensus planning by coordinating planner, * architect, and critic agents. It outputs a plan file that downstream * stages consume. * * By default this remains a structural adapter — actual agent orchestration * happens at the skill layer. When an executor is provided, the stage can * drive the real blueprint runtime and persist live mode state. */ export declare function createBlueprintStage(options?: CreateBlueprintStageOptions): PipelineStage; //# sourceMappingURL=blueprint.d.ts.map