feat: show Terminal Bench model details - #10879
Conversation
Code Review SummaryStatus: 1 Issue Carried Forward | Recommendation: Minor suggestion, safe to merge Overview
Issue Details (click to expand)SUGGESTION (carried forward — unchanged file)
Incremental Change Notes (commit 210f587)The second commit ("test: focus Terminal Bench coverage") reorganises tests:
Other ObservationsKeyed vs unkeyed In <Show when={bench()}>
...
<span>{fmtTerminalBenchScore(bench()!.overallScore)}</span>
<span>{fmtAttemptCost(bench()!.avgAttemptCostUsd)}</span>
</Show>The CLI equivalent in <Show when={m().terminalBench}>
{(bench) => (
...
<text>{fmtScore(bench().overallScore)}</text>
...
)}
</Show>This is not a bug — <Show when={bench()}>
{(b) => (
<div class="model-preview-group">
...
<span class="model-preview-value">{fmtTerminalBenchScore(b().overallScore)}</span>
...
<span class="model-preview-value">{fmtAttemptCost(b().avgAttemptCostUsd)}</span>
</div>
)}
</Show>Files ReviewedFirst commit (b0a4f03) — full review:
Second commit (210f587) — incremental review:
Fix these issues in Kilo Cloud Reviewed by claude-4.6-sonnet-20260217 · 415,059 tokens Review guidance: REVIEW.md from base branch |
…h-kilo # Conflicts: # packages/sdk/js/src/v2/gen/types.gen.ts
…odel-details feat: show Terminal Bench model details
Summary
Rollout
Notes
Validation
CLI TUI
VSCode