chore: streamline phase 2 (#11712)

This commit is contained in:
jif-oai
2026-02-13 13:21:11 +00:00
committed by GitHub
parent feae389942
commit 36541876f4
21 changed files with 864 additions and 1074 deletions

View File

@@ -1825,6 +1825,7 @@ pub enum SubAgentSource {
parent_thread_id: ThreadId,
depth: i32,
},
MemoryConsolidation,
Other(String),
}
@@ -1846,6 +1847,7 @@ impl fmt::Display for SubAgentSource {
match self {
SubAgentSource::Review => f.write_str("review"),
SubAgentSource::Compact => f.write_str("compact"),
SubAgentSource::MemoryConsolidation => f.write_str("memory_consolidation"),
SubAgentSource::ThreadSpawn {
parent_thread_id,
depth,