feat: add AGENT=goose environment variable for cross-tool compatibility (#7017)

This commit is contained in:
Sam W
2026-02-10 09:18:50 -08:00
committed by GitHub
parent 7267621ab8
commit 1168d7d9b1
5 changed files with 7 additions and 0 deletions
+1
View File
@@ -30,6 +30,7 @@ pub fn update(canary: bool, reconfigure: bool) -> Result<()> {
.env("CANARY", canary.to_string())
.env("CONFIGURE", reconfigure.to_string())
.env("GOOSE_TERMINAL", "1")
.env("AGENT", "goose")
.spawn()?;
update.wait_with_output()?;