From 90d76329073670d05f4e7ba62b132b858c31dd7f Mon Sep 17 00:00:00 2001 From: Rizel Scarlett Date: Mon, 20 Oct 2025 02:56:16 -0400 Subject: [PATCH 1/2] docs: add GOOSE_DEBUG environment variable Add documentation for GOOSE_DEBUG environment variable that enables debug mode to show full tool parameters without truncation. --- documentation/docs/guides/environment-variables.md | 1 + 1 file changed, 1 insertion(+) diff --git a/documentation/docs/guides/environment-variables.md b/documentation/docs/guides/environment-variables.md index 043a10daf52e..5a488318f325 100644 --- a/documentation/docs/guides/environment-variables.md +++ b/documentation/docs/guides/environment-variables.md @@ -239,6 +239,7 @@ These variables control how Goose handles [tool execution](/docs/guides/goose-pe | `GOOSE_TOOLSHIM_OLLAMA_MODEL` | Specifies the model for [tool call interpretation](/docs/experimental/ollama) | Model name (e.g. llama3.2, qwen2.5) | System default | | `GOOSE_CLI_MIN_PRIORITY` | Controls verbosity of [tool output](/docs/guides/managing-tools/adjust-tool-output) | Float between 0.0 and 1.0 | 0.0 | | `GOOSE_CLI_TOOL_PARAMS_TRUNCATION_MAX_LENGTH` | Maximum length for tool parameter values before truncation in CLI output (not in debug mode) | Integer | 40 | +| `GOOSE_DEBUG` | Enables debug mode to show full tool parameters without truncation | "true", "1" (case insensitive) to enable | false | **Examples** From c2a9766d2957c186e42653c4a114ced4b648447d Mon Sep 17 00:00:00 2001 From: Angie Jones Date: Mon, 20 Oct 2025 00:16:49 -0700 Subject: [PATCH 2/2] Apply suggestion from @angiejones --- documentation/docs/guides/environment-variables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/docs/guides/environment-variables.md b/documentation/docs/guides/environment-variables.md index 5a488318f325..b5a141625ba1 100644 --- a/documentation/docs/guides/environment-variables.md +++ b/documentation/docs/guides/environment-variables.md @@ -239,7 +239,7 @@ These variables control how Goose handles [tool execution](/docs/guides/goose-pe | `GOOSE_TOOLSHIM_OLLAMA_MODEL` | Specifies the model for [tool call interpretation](/docs/experimental/ollama) | Model name (e.g. llama3.2, qwen2.5) | System default | | `GOOSE_CLI_MIN_PRIORITY` | Controls verbosity of [tool output](/docs/guides/managing-tools/adjust-tool-output) | Float between 0.0 and 1.0 | 0.0 | | `GOOSE_CLI_TOOL_PARAMS_TRUNCATION_MAX_LENGTH` | Maximum length for tool parameter values before truncation in CLI output (not in debug mode) | Integer | 40 | -| `GOOSE_DEBUG` | Enables debug mode to show full tool parameters without truncation | "true", "1" (case insensitive) to enable | false | +| `GOOSE_DEBUG` | Enables debug mode to show full tool parameters without truncation | "1", "true" (case insensitive) to enable | false | **Examples**