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
{active?.kind==='slide'&&<divclassName="computer-file"><Presentationsize={28}/><strong>{active.detail??active.title}</strong><span>Deck evidence is preserved. Open the Files tab to download the PPTX or inspect the rendered viewer.</span></div>}
146
147
{active?.kind==='approval'&&<divclassName="computer-file"><CheckCircle2size={28}/><strong>{active.title}</strong><span>{active.detail??'Approval evidence is recorded separately from the browser and can be verified in the task history.'}</span></div>}
147
148
{(active?.kind==='file'||active?.kind==='diff')&&<divclassName="computer-file"><FileCode2size={28}/><strong>{active.detail??active.title}</strong><span>{active.kind==='diff' ? 'Open the Code tab to inspect the recorded version change.' : 'Open the Files or Code tab to inspect this artifact.'}</span></div>}
148
-
{active?.kind==='terminal'&&<divclassName="computer-terminal"><divclassName="computer-terminal-meta"><span>{active.title}</span>{terminalActivity?.failed ? <b>tool error</b> : <em>{terminalActivity?.durationMs!==undefined ? `completed in ${formatDuration(terminalActivity.durationMs)}` : 'recorded activity'}</em>}</div>{active.payload?.browserTool===true&&<smallclassName="computer-browser-evidence">Governed browser evidence · sandbox only</small>}{terminalActivity?.request!==undefined&&<section><label>Request</label><pre><code>{formatInspectable(terminalActivity.request)}</code></pre></section>}{terminalActivity?.output&&<section><label>{terminalActivity.failed ? 'Error output' : 'Result'}</label><pre><code>{formatInspectable(terminalActivity.output)}</code></pre></section>}{relatedVisuals.length>0&&<divclassName="computer-checkpoints"><span>{relatedVisuals.length} causal visual checkpoint{relatedVisuals.length===1 ? '' : 's'}</span><divclassName="computer-checkpoint-gallery">{relatedVisuals.map((visual,index)=><buttonkey={visual.id}onClick={()=>inspectVisual(visual.id)}aria-label={`Inspect visual checkpoint ${index+1} for ${active.title}`}><imgsrc={withCacheBust(visual.uri??'',frame)}alt={`Checkpoint ${index+1}: ${visual.title}`}loading="lazy"/><small>Frame {index+1} · #{visual.sequence??'—'}</small></button>)}</div></div>}{terminalActivity?.toolUseId&&<small>Tool call {terminalActivity.toolUseId.slice(-8)} · correlated with its paired result and visual checkpoints in this run.</small>}</div>}
149
+
{active?.kind==='terminal'&&<divclassName="computer-terminal"><divclassName="computer-terminal-meta"><span>{terminalActivity?.command ? `CLI command · ${active.title}` : active.title}</span>{terminalActivity?.failed ? <b>tool error</b> : <em>{terminalActivity?.durationMs!==undefined ? `completed in ${formatDuration(terminalActivity.durationMs)}` : 'recorded activity'}</em>}</div>{active.payload?.browserTool===true&&<smallclassName="computer-browser-evidence">Governed browser evidence · sandbox only</small>}{terminalActivity?.command ? <section><label>Command · {terminalActivity.workspaceLabel}</label><pre><code>$ {terminalActivity.command}</code></pre></section> : terminalActivity?.request!==undefined&&<section><label>Request</label><pre><code>{formatInspectable(terminalActivity.request)}</code></pre></section>}{terminalActivity?.output&&<section><label>{terminalActivity.failed ? 'Error output' : terminalActivity.command ? 'Command output' : 'Result'}</label><pre><code>{formatInspectable(terminalActivity.output)}</code></pre></section>}{relatedVisuals.length>0&&<divclassName="computer-checkpoints"><span>{relatedVisuals.length} causal visual checkpoint{relatedVisuals.length===1 ? '' : 's'}</span><divclassName="computer-checkpoint-gallery">{relatedVisuals.map((visual,index)=><buttonkey={visual.id}onClick={()=>inspectVisual(visual.id)}aria-label={`Inspect visual checkpoint ${index+1} for ${active.title}`}><imgsrc={withCacheBust(visual.uri??'',frame)}alt={`Checkpoint ${index+1}: ${visual.title}`}loading="lazy"/><small>Frame {index+1} · #{visual.sequence??'—'}</small></button>)}</div></div>}{terminalActivity?.toolUseId&&<small>Tool call {terminalActivity.toolUseId.slice(-8)} · correlated with its paired result and visual checkpoints in this run.</small>}</div>}
0 commit comments