feat: expose AGENT_SESSION_ID env var to extension child processes (#7072)

This commit is contained in:
tlongwell-block
2026-02-07 19:02:08 -05:00
committed by GitHub
parent 584f710fad
commit f338e36c65
6 changed files with 42 additions and 9 deletions
+6 -1
View File
@@ -783,7 +783,12 @@ impl Agent {
_ => {
let container = self.container.lock().await;
self.extension_manager
.add_extension(extension.clone(), working_dir, container.as_ref())
.add_extension(
extension.clone(),
working_dir,
container.as_ref(),
Some(session_id),
)
.await?;
}
}