From 93dbf5949c870db6ca6b7cb41dd1c4abd95e4a72 Mon Sep 17 00:00:00 2001 From: Angie Jones Date: Mon, 24 Feb 2025 08:02:57 -0600 Subject: [PATCH] docs: new guide on adjusting tool output in CLI (#1357) --- .../docs/guides/adjust-tool-output.md | 57 +++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 documentation/docs/guides/adjust-tool-output.md diff --git a/documentation/docs/guides/adjust-tool-output.md b/documentation/docs/guides/adjust-tool-output.md new file mode 100644 index 00000000..c3f57cc8 --- /dev/null +++ b/documentation/docs/guides/adjust-tool-output.md @@ -0,0 +1,57 @@ +--- +sidebar_position: 7 +--- +# Adjust Tool Output + +When working with the Goose CLI, you can control the verbosity of tool output. + +To adjust the tool output, run: + +```sh +goose configure +``` + +Then choose `Adjust Tool Output` + +```sh +┌ goose-configure +│ +◆ What would you like to configure? +│ ○ Configure Providers +│ ○ Add Extension +│ ○ Toggle Extensions +│ ○ Remove Extension +// highlight-next-line +│ ● Adjust Tool Output (Show more or less tool output) +└ +``` + +Next, choose one of the available modes: + +```sh +┌ goose-configure +│ +◇ What would you like to configure? +│ Adjust Tool Output +│ +// highlight-start +◆ Which tool output would you like to show? +│ ○ High Importance +│ ○ Medium Importance +│ ○ All +// highlight-end +└ +``` + +- **High Importance** + - Shows only the most important tool outputs + - Most minimal output level + +- **Medium Importance** + - Shows medium and high importance outputs + - Example: Results of file-write operations + +- **All** + - Shows all tool outputs + - Example: Shell command outputs + - Most verbose level