You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: address multi-model code review findings for recent merges (#307)
- Fix TUI trace dialog ignoring custom `tracing.dir` config — plumb
config dir through `DialogTraceList`, `getTraceViewerUrl`, and
`openTraceInBrowser` so custom trace directories work in the TUI
- Fix WebFetch `clearTimeout` leak — move both `fetch` calls inside the
`try` block so the `finally` clause always clears the timer, even on
DNS failures or `AbortError`
- Fix `cleanTitle` empty string fallback — add `"(Untitled)"` as final
fallback when all parsing yields empty
- Add error logging to `openTraceInBrowser` — log actual error before
showing toast so failures are debuggable
- Add `altimate_change` markers around `HONEST_UA` branding constant in
`webfetch.ts` for upstream merge compatibility
- Update tracing docs for new `/trace` dialog behavior
- Update TUI docs to include `/trace` in slash command examples
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: docs/docs/configure/tracing.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -144,7 +144,9 @@ The `--live` flag adds a green "LIVE" indicator and polls for updates every 2 se
144
144
145
145
### From the TUI
146
146
147
-
Type `/trace` in the TUI to open the trace viewer for the current session in your browser. The viewer launches in live mode automatically, so you can watch spans appear as the agent works.
147
+
Type `/trace` in the TUI to open a trace history dialog listing all recent sessions. Select any trace to open it in your browser with the interactive viewer. The current session appears at the top, and traces are grouped by date with duration and timestamp info.
148
+
149
+
The viewer launches in live mode automatically for in-progress sessions, so you can watch spans appear as the agent works.
0 commit comments