pub fn run_development_phase(
ctx: &mut PhaseContext<'_>,
start_iter: u32,
resuming_from_development: bool,
) -> Result<DevelopmentResult>Expand description
Run the development phase.
This phase runs developer_iters iterations, each consisting of:
- Planning: Create PLAN.md from PROMPT.md
- Execution: Execute the plan
- Cleanup: Delete PLAN.md
§Arguments
ctx- The phase context containing shared statestart_iter- The iteration to start from (for resume support)resuming_from_development- Whether we’re resuming into the development step
§Returns
Returns Ok(DevelopmentResult) on success, or an error if a critical failure occurs.