feat(tui-go): drop inline tool-start rows (keep results only)

The ⏵ tool-start row doubled up with the ✓/✎ result row in OUTPUT. Drop it
inline — tool starts still show in the tool list + EVENTS panel. The inline
transcript now carries only outcomes: ✎ writes, ✓/✗ tool results, ⌘/✕
approvals, ⊞/⊟ grants.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-06-21 23:24:10 +00:00
parent 6a06f2ead5
commit f14a83c026
3 changed files with 3 additions and 4 deletions
+1 -1
View File
@@ -67,7 +67,7 @@ const (
type RouterEntry struct {
Role string // user | router | tool | narration | narration_llm | action
Content string
Icon string // action role only: the gutter glyph (✓ ✎ ⌘ ✕ ⊞ ⊟)
Icon string // action role only: the gutter glyph (✓ ✎ ⌘ ✕ ⊞ ⊟)
Metrics *TurnMetrics
}