huskies: merge 979

This commit is contained in:
dave
2026-05-13 14:08:58 +00:00
parent 4b18c01835
commit 7854fbd78a
2 changed files with 157 additions and 10 deletions
-8
View File
@@ -284,14 +284,6 @@ pub(super) async fn run_agent_spawn(
prompt = format!("{block}\n\n{prompt}");
}
// Append a reference to the source map if the file was written.
let source_map_path = project_root_clone.join(".huskies").join("source-map.json");
if source_map_path.exists() {
prompt.push_str(
"\n\nA source map of well-documented changed files is at `.huskies/source-map.json`.",
);
}
match &session_id_to_resume_owned {
Some(sess_id) => slog!("[agent:{sid}:{aname}] spawn mode=warm session_id={sess_id}"),
None => slog!("[agent:{sid}:{aname}] spawn mode=cold"),