diff --git a/server/src/agents.rs b/server/src/agents.rs index f7abc8f..f59b0ad 100644 --- a/server/src/agents.rs +++ b/server/src/agents.rs @@ -996,10 +996,10 @@ impl AgentPool { if passed { slog!( - "[pipeline] Post-merge tests passed for '{story_id}'. Archiving." + "[pipeline] Post-merge tests passed for '{story_id}'. Moving to done." ); if let Err(e) = move_story_to_archived(&project_root, story_id) { - slog_error!("[pipeline] Failed to archive '{story_id}': {e}"); + slog_error!("[pipeline] Failed to move '{story_id}' to done: {e}"); } self.remove_agents_for_story(story_id); // Mergemaster slot is now free — pick up any other items in 4_merge/. @@ -1017,7 +1017,7 @@ impl AgentPool { // ); // } slog!( - "[pipeline] Story '{story_id}' archived. Worktree preserved for inspection." + "[pipeline] Story '{story_id}' done. Worktree preserved for inspection." ); } else { slog!( diff --git a/server/src/http/mcp.rs b/server/src/http/mcp.rs index 7cb3f15..d1dce4d 100644 --- a/server/src/http/mcp.rs +++ b/server/src/http/mcp.rs @@ -1417,9 +1417,9 @@ async fn tool_merge_agent_work(args: &Value, ctx: &AppContext) -> Result