From f779a3d16ca64202b43b9efdbf63dd798cea8c1b Mon Sep 17 00:00:00 2001 From: Kynan Ware <47394200+BagToad@users.noreply.github.com> Date: Mon, 15 Sep 2025 14:23:12 -0600 Subject: [PATCH] Add TODO for bash-related tool call details Inserted a TODO comment to consider including more details for bash-related tool calls in the log rendering function. --- pkg/cmd/agent-task/shared/log.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/cmd/agent-task/shared/log.go b/pkg/cmd/agent-task/shared/log.go index 21fd95cd9..7ca3dd9e5 100644 --- a/pkg/cmd/agent-task/shared/log.go +++ b/pkg/cmd/agent-task/shared/log.go @@ -159,6 +159,7 @@ func renderLogEntry(entry chatCompletionChunkEntry, w io.Writer, io *iostreams.I return false, fmt.Errorf("failed to render bash command output: %w", err) } } + // TODO: consider including more details for these bash-related tool calls. case "write_bash": if v := unmarshal[writeBashToolArgs](args); v != nil { renderToolCallTitle(w, cs, "Send input to Bash session", "")