feat: add GOOSE_SHOW_FULL_OUTPUT config to disable tool output truncation (#7919)

Signed-off-by: Dale Lakes <6843636+spitfire55@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Dale Lakes
2026-03-26 13:47:34 -04:00
committed by GitHub
parent 09a99bbc75
commit 1451c73eac
+3 -1
View File
@@ -76,7 +76,9 @@ thread_local! {
.unwrap_or(Theme::Ansi)
)
);
static SHOW_FULL_TOOL_OUTPUT: RefCell<bool> = const { RefCell::new(false) };
static SHOW_FULL_TOOL_OUTPUT: RefCell<bool> = RefCell::new(
Config::global().get_param::<bool>("GOOSE_SHOW_FULL_OUTPUT").unwrap_or(false)
);
}
pub fn set_theme(theme: Theme) {