huskies: merge 951

This commit is contained in:
dave
2026-05-13 04:28:30 +00:00
parent c5abc44a63
commit 2f50e2198b
12 changed files with 178 additions and 218 deletions
+3 -2
View File
@@ -19,10 +19,11 @@ pub(super) async fn tool_merge_agent_work(
if let Some(item) = crate::crdt_state::read_item(story_id)
&& matches!(
item.stage(),
crate::crdt_state::Stage::Done | crate::crdt_state::Stage::Archived
crate::pipeline_state::Stage::Done { .. }
| crate::pipeline_state::Stage::Archived { .. }
)
{
let stage_name = item.stage().as_dir().to_string();
let stage_name = item.stage().dir_name().to_string();
return serde_json::to_string_pretty(&json!({
"story_id": story_id,
"status": "completed",