huskies: merge 1010

This commit is contained in:
dave
2026-05-14 08:07:43 +00:00
parent 4520e0e6f9
commit 13ab97a615
27 changed files with 572 additions and 95 deletions
@@ -27,7 +27,13 @@ impl AgentPool {
/// here as well.
pub(super) async fn assign_pipeline_stages(&self, project_root: &Path, config: &ProjectConfig) {
let stages: [(Stage, PipelineStage); 2] = [
(Stage::Coding { claim: None }, PipelineStage::Coder),
(
Stage::Coding {
claim: None,
plan: Default::default(),
},
PipelineStage::Coder,
),
(Stage::Qa, PipelineStage::Qa),
];