workspace: aggregate console read calls

This commit is contained in:
2026-07-11 07:28:31 +09:00
parent dbc223e9e0
commit 89ba205cac
4 changed files with 166 additions and 8 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
title: 'Improve workspace console tool call rendering'
state: 'closed'
created_at: '2026-07-10T22:08:58Z'
updated_at: '2026-07-10T22:17:10Z'
updated_at: '2026-07-10T22:28:24Z'
assignee: null
queued_by: 'yoi ticket'
queued_at: '2026-07-10T22:09:21Z'
+15
View File
@@ -87,4 +87,19 @@ Ticket を closed にしました。
Implemented frontend Workspace Console tool call grouping. Tool call start/arg/done/result events now project into a single `Call · <tool>` block keyed by call id, with streaming state updates and folded result output. Added generic and TUI-aligned specialized summaries for core tools, including Bash command/output rendering. Validated with frontend check/test, diff check, and Nix package build.
---
<!-- event: implementation_report author: hare at: 2026-07-10T22:28:24Z -->
## Implementation report
Follow-up correction: Read rendering now matches the TUI special case more closely. Consecutive Read calls are aggregated into a single `Call · Read` block, and file contents / tool output are not rendered in the console body. The aggregate lists paths and state only, preserving summaries in detail.
Validation:
- cd web/workspace && deno task check
- cd web/workspace && deno task test
- git diff --check
- nix build .#yoi --no-link
---