huskies: merge 652_story_pass_resume_session_id_on_agent_respawn_so_new_sessions_inherit_prior_reasoning

This commit is contained in:
dave
2026-04-27 11:23:28 +00:00
parent 144f07f412
commit ac85cfce5d
8 changed files with 319 additions and 10 deletions
+4
View File
@@ -617,6 +617,7 @@ mod tests {
inactivity_timeout_secs: 300,
mcp_port: 3001,
session_id_to_resume: None,
fresh_prompt: None,
};
assert_eq!(build_system_text(&ctx), "Custom system prompt");
@@ -634,6 +635,7 @@ mod tests {
inactivity_timeout_secs: 300,
mcp_port: 3001,
session_id_to_resume: None,
fresh_prompt: None,
};
let text = build_system_text(&ctx);
@@ -684,6 +686,7 @@ mod tests {
inactivity_timeout_secs: 300,
mcp_port: 3001,
session_id_to_resume: None,
fresh_prompt: None,
};
assert!(ctx.command.starts_with("gpt"));
}
@@ -700,6 +703,7 @@ mod tests {
inactivity_timeout_secs: 300,
mcp_port: 3001,
session_id_to_resume: None,
fresh_prompt: None,
};
assert!(ctx.command.starts_with("o"));
}