frontend/agent: drop JS dispatch tables, read backend _icon/_summary/_category
Phase 2 of hyperhive#2196. The backend now pre-computes enrichment fields on every SSE event (stream_enrich.rs); the frontend reads them directly instead of running its own dispatch logic. Removed (~330 lines of JS): - fmtArgsGeneric / TOOL_ICONS / toolIcon / fmtRoom / fmtUser / fmtToolUse renderStream changes: - system events: dispatch on v._category (drop/thinking_tok/note/details) + v._summary / v._body instead of per-subtype if-chains; status tick still overrides label client-side when stateName === 'compacting' since elapsed time is a wall-clock value the backend cannot know at emit time - tool_use: use c._category === 'rich' for rich-renderer routing, c._icon / c._summary for flat rows renderRichToolUse: toolIcon(name) -> c._icon (from backend enrichment) stream_enrich.rs: also stamp _category: 'drop' on top-level type=result / type=rate_limit_event so the frontend can use a single _category check instead of separate type-based early returns
This commit is contained in:
parent
ae3f011eb3
commit
0f5367f948
3 changed files with 196 additions and 437 deletions
|
|
@ -1473,245 +1473,6 @@ window.marked = marked;
|
|||
}
|
||||
return d;
|
||||
}
|
||||
// Generic args-pretty-printer for unknown / extra-MCP tools. The
|
||||
// built-in switch handles the common claude/hyperhive tools; this
|
||||
// is the fallback so an `mcp__matrix__send_message` or similar
|
||||
// doesn't dump raw JSON. Heuristics: single string-valued field →
|
||||
// `Name field: "value"`; single dict-valued field → `Name field
|
||||
// {…}`; otherwise compact JSON. Always trimmed to fit a row.
|
||||
function fmtArgsGeneric(name, input) {
|
||||
const keys = Object.keys(input || {});
|
||||
if (keys.length === 0) return name + '()';
|
||||
if (keys.length === 1) {
|
||||
const k = keys[0];
|
||||
const v = input[k];
|
||||
if (typeof v === 'string') {
|
||||
const oneline = v.replace(/\s+/g, ' ').trim();
|
||||
return name + ' ' + k + ': ' + JSON.stringify(trim(oneline, 100));
|
||||
}
|
||||
if (typeof v === 'number' || typeof v === 'boolean') {
|
||||
return name + ' ' + k + ': ' + JSON.stringify(v);
|
||||
}
|
||||
}
|
||||
// Multi-field: render `k: v` pairs with strings/numbers inlined and
|
||||
// anything else summarised by type so the row stays readable.
|
||||
const pretty = keys.slice(0, 4).map((k) => {
|
||||
const v = input[k];
|
||||
if (v == null) return k + ': null';
|
||||
if (typeof v === 'string') {
|
||||
const oneline = v.replace(/\s+/g, ' ').trim();
|
||||
return k + ': ' + JSON.stringify(trim(oneline, 40));
|
||||
}
|
||||
if (typeof v === 'number' || typeof v === 'boolean') return k + ': ' + v;
|
||||
if (Array.isArray(v)) return k + `: [${v.length}]`;
|
||||
return k + ': {…}';
|
||||
});
|
||||
const tail = keys.length > 4 ? ' …+' + (keys.length - 4) : '';
|
||||
return name + ' ' + pretty.join(' · ') + tail;
|
||||
}
|
||||
// Per-tool glyph for the tool-use row prefix — gives each hive / MCP /
|
||||
// built-in tool a distinctive icon instead of a generic wrench, so the
|
||||
// scrollback is scannable at a glance. Exact tool names first, then
|
||||
// MCP-server family fallbacks, then a generic wrench default.
|
||||
const TOOL_ICONS = {
|
||||
'mcp__hyperhive__send': '📤',
|
||||
'mcp__hyperhive__recv': '📥',
|
||||
'mcp__hyperhive__ask': '❓',
|
||||
'mcp__hyperhive__answer': '✍️',
|
||||
'mcp__hyperhive__remind': '⏰',
|
||||
'mcp__hyperhive__set_status': '🏷️',
|
||||
'mcp__hyperhive__get_loose_ends': '🪢',
|
||||
'mcp__hyperhive__cancel_loose_end': '✂️',
|
||||
'mcp__hyperhive__ack_until': '✅',
|
||||
'mcp__hyperhive__get_agent_meta': 'ℹ️',
|
||||
'mcp__hyperhive__request_next_turn': '⏩',
|
||||
'mcp__hyperhive__restart': '↻',
|
||||
'mcp__hyperhive__kill': '⏹️',
|
||||
'mcp__hyperhive__start': '▶️',
|
||||
'mcp__hyperhive__update': '🔄',
|
||||
'mcp__hyperhive__list_containers': '📋',
|
||||
'mcp__hyperhive__get_logs': '📜',
|
||||
'mcp__hyperhive__get_host_journal': '📜',
|
||||
'mcp__matrix__read_room': '📖',
|
||||
'mcp__matrix__mark_read': '👁️',
|
||||
'mcp__matrix__list_rooms': '📋',
|
||||
'mcp__matrix__list_room_members': '📋',
|
||||
'mcp__matrix__list_invites': '📋',
|
||||
'mcp__bash__kill': '🛑',
|
||||
Read: '📖', Write: '💾', Edit: '✏️', Glob: '🔍', Grep: '🔍',
|
||||
};
|
||||
function toolIcon(name) {
|
||||
if (TOOL_ICONS[name]) return TOOL_ICONS[name];
|
||||
if (typeof name === 'string') {
|
||||
if (name.startsWith('mcp__matrix__')) return '💬';
|
||||
if (name.startsWith('mcp__bash__')) return '🖥️';
|
||||
if (name.includes('schedule')) return '⏱️';
|
||||
// request_init_config / request_update_meta_inputs
|
||||
if (name.startsWith('mcp__hyperhive__request_')) return '📦';
|
||||
}
|
||||
return '🔧';
|
||||
}
|
||||
// Shorten a matrix room id or alias for display. Room ids (!xxx:server)
|
||||
// are trimmed to the first 8 local chars; aliases (#name:server) are
|
||||
// returned as-is (they're already readable). Falls back to the raw
|
||||
// value truncated.
|
||||
function fmtRoom(r) {
|
||||
if (!r) return '?';
|
||||
if (r.startsWith('!')) return r.slice(0, r.indexOf(':') > 0 ? r.indexOf(':') : 9);
|
||||
if (r.startsWith('#')) return r.split(':')[0] || r;
|
||||
return trim(r, 20);
|
||||
}
|
||||
// Shorten @user:server → @user.
|
||||
function fmtUser(u) {
|
||||
if (!u) return '?';
|
||||
const colon = u.indexOf(':');
|
||||
return colon > 0 ? u.slice(0, colon) : u;
|
||||
}
|
||||
// Pretty-print a tool call: per-known-tool format, fallback to JSON
|
||||
// for unknown tools.
|
||||
function fmtToolUse(c) {
|
||||
const name = c.name || '';
|
||||
const input = c.input || {};
|
||||
const short = name.startsWith('mcp__hyperhive__')
|
||||
? name.slice('mcp__hyperhive__'.length) + '*'
|
||||
: name.startsWith('mcp__bash__')
|
||||
? name.slice('mcp__bash__'.length) + '*'
|
||||
: name.startsWith('mcp__matrix__')
|
||||
? name.slice('mcp__matrix__'.length) + '*'
|
||||
: name;
|
||||
switch (name) {
|
||||
case 'Read': return short + ' ' + (input.file_path || '');
|
||||
case 'Write': return short + ' ' + (input.file_path || '');
|
||||
case 'Edit': return short + ' ' + (input.file_path || '');
|
||||
case 'Glob': return short + ' ' + (input.pattern || '');
|
||||
case 'Grep': return short + ' ' + (input.pattern || '');
|
||||
case 'Bash': return short + (input.run_in_background ? ' [bg]' : '')
|
||||
+ ' $ ' + (input.command || '');
|
||||
case 'TodoWrite': return short + ' (' + ((input.todos || []).length) + ' items)';
|
||||
case 'mcp__hyperhive__send': return short + ' → ' + (input.to || '?') + ': '
|
||||
+ JSON.stringify(input.body || '').slice(0, 80);
|
||||
case 'mcp__hyperhive__recv': {
|
||||
// Surface the long-poll wait + batch size — a bare `recv()` row
|
||||
// hides whether the agent is parking a turn (wait_seconds) or
|
||||
// draining a burst (max).
|
||||
const parts = [];
|
||||
if (input.wait_seconds != null) parts.push('wait ' + input.wait_seconds + 's');
|
||||
if (input.max != null) parts.push('max ' + input.max);
|
||||
return short + (parts.length ? ' ' + parts.join(' · ') : '()');
|
||||
}
|
||||
case 'mcp__hyperhive__kill': return short + ' ' + (input.name || '');
|
||||
case 'mcp__hyperhive__restart': return short + ' ' + (input.name || '');
|
||||
case 'mcp__hyperhive__start': return short + ' ' + (input.name || '');
|
||||
case 'mcp__hyperhive__update': return short + ' ' + (input.name || '');
|
||||
case 'mcp__hyperhive__ack_until':
|
||||
return short + ' ≤' + (input.up_to != null ? input.up_to : '?');
|
||||
case 'mcp__hyperhive__get_logs':
|
||||
return short + ' ' + (input.agent || '?')
|
||||
+ (input.lines != null ? ' · ' + input.lines + 'L' : '');
|
||||
case 'mcp__hyperhive__get_host_journal': {
|
||||
const parts = [];
|
||||
if (input.container) parts.push(input.container);
|
||||
else if (input.unit) parts.push(input.unit);
|
||||
if (input.grep) parts.push('/' + input.grep + '/');
|
||||
if (input.lines != null) parts.push(input.lines + 'L');
|
||||
return short + (parts.length ? ' ' + parts.join(' · ') : '()');
|
||||
}
|
||||
case 'mcp__hyperhive__remind': {
|
||||
// Surface when the reminder fires + the first line of the message.
|
||||
// `delay_seconds` → human-readable "+5m"; `at_unix_timestamp` →
|
||||
// "at HH:MM"; message truncated to fit.
|
||||
let when = '';
|
||||
if (input.delay_seconds != null) {
|
||||
const s = input.delay_seconds;
|
||||
when = '+' + (s < 60 ? s + 's' : s < 3600 ? Math.round(s / 60) + 'm'
|
||||
: (s / 3600).toFixed(1) + 'h');
|
||||
} else if (input.at_unix_timestamp != null) {
|
||||
when = 'at ' + new Date(input.at_unix_timestamp * 1000)
|
||||
.toISOString().slice(11, 16) + 'Z';
|
||||
}
|
||||
const msg = String(input.message || input.file_path || '').replace(/\s+/g, ' ').trim();
|
||||
return short + (when ? ' ' + when : '') + (msg ? ' "' + trim(msg, 60) + '"' : '');
|
||||
}
|
||||
case 'mcp__hyperhive__request_init_config':
|
||||
return short + ' ' + (input.name || '?');
|
||||
case 'mcp__hyperhive__request_update_meta_inputs': {
|
||||
const ins = Array.isArray(input.inputs) && input.inputs.length
|
||||
? '[' + input.inputs.slice(0, 4).join(', ')
|
||||
+ (input.inputs.length > 4 ? ', …' : '') + ']'
|
||||
: 'all';
|
||||
return short + ' ' + ins;
|
||||
}
|
||||
case 'mcp__hyperhive__list_schedules':
|
||||
return short + '()';
|
||||
case 'mcp__hyperhive__cancel_schedule':
|
||||
return short + ' #' + (input.id != null ? input.id : '?')
|
||||
+ (Array.isArray(input.targets) && input.targets.length
|
||||
? ' [' + input.targets.join(', ') + ']' : ' all');
|
||||
case 'mcp__hyperhive__fire_schedule_now':
|
||||
return short + ' #' + (input.id != null ? input.id : '?');
|
||||
case 'mcp__hyperhive__edit_schedule': {
|
||||
const parts = ['#' + (input.id != null ? input.id : '?')];
|
||||
if (input.body != null) parts.push('body');
|
||||
if (input.interval_seconds != null) parts.push('interval');
|
||||
if (input.next_fire_at_unix != null) parts.push('next');
|
||||
if (input.targets_add && input.targets_add.length) parts.push('+' + input.targets_add.length + ' tgt');
|
||||
if (input.targets_remove && input.targets_remove.length) parts.push('-' + input.targets_remove.length + ' tgt');
|
||||
return short + ' ' + parts.join(' · ');
|
||||
}
|
||||
case 'mcp__hyperhive__request_schedule_prompt': {
|
||||
const tgts = Array.isArray(input.targets) ? input.targets : [];
|
||||
const when = input.first_fire_at_unix != null
|
||||
? new Date(input.first_fire_at_unix * 1000).toISOString().slice(11, 16) + 'Z'
|
||||
: '?';
|
||||
return short + ' → ' + (tgts.length ? tgts.join(', ') : '?') + ' at ' + when
|
||||
+ (input.interval_seconds != null ? ' +' + input.interval_seconds + 's' : '');
|
||||
}
|
||||
case 'mcp__bash__run': {
|
||||
// Rich renderer handles the full body; this summary covers any
|
||||
// fallback path and the details summary line.
|
||||
const firstLine = String(input.cmd || '').split('\n')[0];
|
||||
return short + ' $ ' + trim(firstLine.trim(), 72);
|
||||
}
|
||||
case 'mcp__bash__status':
|
||||
return short + ' id:' + (input.id || '?')
|
||||
+ (input.wait_seconds != null ? ' · wait ' + input.wait_seconds + 's' : '');
|
||||
case 'mcp__bash__kill':
|
||||
return short + ' ' + (input.id || '?') + (input.force ? ' [force]' : '');
|
||||
case 'mcp__hyperhive__set_status':
|
||||
return short + ' "' + trim(String(input.text || ''), 60) + '"';
|
||||
case 'mcp__hyperhive__get_loose_ends':
|
||||
return short + (input.agent ? ' [' + input.agent + ']' : '()');
|
||||
case 'mcp__hyperhive__get_agent_meta':
|
||||
return short + (input.name ? ' ' + input.name : '()');
|
||||
case 'mcp__hyperhive__cancel_loose_end':
|
||||
return short + ' ' + (input.kind || '?') + ' #' + (input.id != null ? input.id : '?');
|
||||
case 'mcp__matrix__read_room':
|
||||
return short + ' ' + fmtRoom(input.room)
|
||||
+ (input.limit != null ? ' [' + input.limit + ']' : '');
|
||||
case 'mcp__matrix__mark_read':
|
||||
return short + ' ' + fmtRoom(input.room);
|
||||
case 'mcp__matrix__send_message':
|
||||
return short + ' → ' + fmtRoom(input.room) + ': '
|
||||
+ JSON.stringify(trim(String(input.body || ''), 50));
|
||||
case 'mcp__matrix__send_dm':
|
||||
return short + ' → ' + fmtUser(input.user_id) + ': '
|
||||
+ JSON.stringify(trim(String(input.body || ''), 50));
|
||||
case 'mcp__matrix__send_reply':
|
||||
return short + ' → ' + fmtRoom(input.room) + ': '
|
||||
+ JSON.stringify(trim(String(input.body || ''), 50));
|
||||
case 'mcp__matrix__send_reaction':
|
||||
return short + ' ' + fmtRoom(input.room) + ' ' + (input.key || '?');
|
||||
case 'mcp__matrix__join_room':
|
||||
return short + ' ' + fmtRoom(input.room);
|
||||
case 'mcp__matrix__open_dm':
|
||||
return short + ' ' + fmtUser(input.user_id);
|
||||
case 'mcp__matrix__invite_user':
|
||||
return short + ' ' + fmtUser(input.user_id) + ' → ' + fmtRoom(input.room);
|
||||
case 'mcp__matrix__download_file':
|
||||
return short + ' ' + fmtRoom(input.room);
|
||||
default: return fmtArgsGeneric(short, input);
|
||||
}
|
||||
}
|
||||
// Build a "rich" tool_use row for tools whose input has a body we
|
||||
// want the operator to see in full. Returns null for any other tool
|
||||
// so the caller falls back to the flat-row path.
|
||||
|
|
@ -1721,6 +1482,7 @@ window.marked = marked;
|
|||
function renderRichToolUse(c, api) {
|
||||
const name = c.name || '';
|
||||
const input = c.input || {};
|
||||
const icon = c._icon || '🔧';
|
||||
if (name === 'Write' || name === 'Edit') {
|
||||
const path = input.file_path || '?';
|
||||
let body;
|
||||
|
|
@ -1746,7 +1508,7 @@ window.marked = marked;
|
|||
// the CSS disclosure caret leads the text).
|
||||
const summary = name + ' ' + path + ' · '
|
||||
+ (minus ? '-' + minus + ' ' : '') + '+' + plus;
|
||||
return api.detailsDiff('tool-use', summary, body, toolIcon(name));
|
||||
return api.detailsDiff('tool-use', summary, body, icon);
|
||||
}
|
||||
// Message-bearing tools render default-open with a markdown body so
|
||||
// the operator sees the content without an extra click. send / ask
|
||||
|
|
@ -1757,7 +1519,7 @@ window.marked = marked;
|
|||
const lines = body.split('\n').length;
|
||||
return detailsOpenMd(api, 'tool-use',
|
||||
'send → ' + to + (lines > 1 ? ` · ${lines}L` : ''),
|
||||
body, toolIcon(name));
|
||||
body, icon);
|
||||
}
|
||||
if (name === 'mcp__hyperhive__ask') {
|
||||
const to = input.to || 'operator';
|
||||
|
|
@ -1765,7 +1527,7 @@ window.marked = marked;
|
|||
const lines = q.split('\n').length;
|
||||
const d = detailsOpenMd(api, 'tool-use',
|
||||
'ask → ' + to + (lines > 1 ? ` · ${lines}L` : ''),
|
||||
q, toolIcon(name));
|
||||
q, icon);
|
||||
// When the ask targets the operator, mount an inline answer
|
||||
// slot in the live terminal — see docs/web-ui.md::Per-agent
|
||||
// page (Ask → operator inline-answer binding) for the slot
|
||||
|
|
@ -1795,7 +1557,7 @@ window.marked = marked;
|
|||
const lines = a.split('\n').length;
|
||||
return detailsOpenMd(api, 'tool-use',
|
||||
'answer #' + id + (lines > 1 ? ` · ${lines}L` : ''),
|
||||
a, toolIcon(name));
|
||||
a, icon);
|
||||
}
|
||||
// Bash task runner — show full command in an expandable pre block so
|
||||
// multi-line scripts are readable. Summary uses the first line so the
|
||||
|
|
@ -1804,7 +1566,7 @@ window.marked = marked;
|
|||
const cmd = String(input.cmd || '');
|
||||
const firstLine = cmd.split('\n')[0];
|
||||
const summary = 'run* $ ' + trim(firstLine.trim(), 72);
|
||||
return api.details('tool-use', summary, '$ ' + cmd, toolIcon(name));
|
||||
return api.details('tool-use', summary, '$ ' + cmd, icon);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
|
@ -1922,101 +1684,28 @@ window.marked = marked;
|
|||
// then "✓ done") for what's really one event.
|
||||
const updatePluginInstall = makeCoalescer('note');
|
||||
function renderStream(v, api) {
|
||||
// Drop claude's result line and rate-limit — noise. TurnEnd
|
||||
// communicates pass/fail; rate-limit events are noisy status chatter.
|
||||
if (v.type === 'rate_limit_event') return;
|
||||
if (v.type === 'result') return;
|
||||
// `system` events: `init` is silent startup noise; `api_retry`
|
||||
// and `api_error` get human-readable notes; unknown subtypes get a
|
||||
// muted line rather than a raw-JSON dump in the loud `sys` colour.
|
||||
// Backend pre-computes `_category` on all known event types.
|
||||
// "drop" covers: type=result, type=rate_limit_event, and system/init.
|
||||
if (v._category === 'drop') return;
|
||||
|
||||
if (v.type === 'system') {
|
||||
if (v.subtype === 'init') return;
|
||||
if (v.subtype === 'api_retry') {
|
||||
const parts = ['⚠ api retry'];
|
||||
if (v.attempt != null && v.max_retries != null)
|
||||
parts.push(v.attempt + '/' + v.max_retries);
|
||||
if (v.error) parts.push(String(v.error));
|
||||
else if (v.error_status) parts.push('HTTP ' + v.error_status);
|
||||
if (v.retry_delay_ms != null)
|
||||
parts.push(Math.round(v.retry_delay_ms) + 'ms');
|
||||
api.row('note', parts.join(' · '));
|
||||
const cat = v._category;
|
||||
const summary = v._summary;
|
||||
// thinking_tok: collapse many ticks into one in-place counter row.
|
||||
if (cat === 'thinking_tok') {
|
||||
updateThinkingTokens(api, summary || 'thinking…');
|
||||
return;
|
||||
}
|
||||
if (v.subtype === 'api_error') {
|
||||
const msg = v.error || v.message
|
||||
|| (v.error_status ? 'HTTP ' + v.error_status : 'unknown');
|
||||
api.row('note stderr', '✗ api error · ' + msg);
|
||||
return;
|
||||
}
|
||||
// Live thinking-token counter — claude streams many of these per
|
||||
// turn (a running `estimated_tokens` total while it thinks). Collapse
|
||||
// consecutive ticks into ONE in-place-updating row instead of a note
|
||||
// per tick (see `makeCoalescer` above).
|
||||
if (v.subtype === 'thinking_tokens') {
|
||||
const n = v.estimated_tokens;
|
||||
const text = 'thinking … '
|
||||
+ (n != null ? '~' + Number(n).toLocaleString() + ' tokens' : '');
|
||||
updateThinkingTokens(api, text);
|
||||
return;
|
||||
}
|
||||
// plugin_install: claude is loading/finishing a plugin (MCP server or
|
||||
// slash-command provider). Show the status so the operator knows when
|
||||
// a fresh session is loading its toolset.
|
||||
// plugin_install: coalesced in-place row while the plugin loads.
|
||||
if (v.subtype === 'plugin_install') {
|
||||
const status = v.status === 'completed' ? '✓ done'
|
||||
: v.status === 'started' ? 'loading…'
|
||||
: (v.status || '?');
|
||||
updatePluginInstall(api, '⚙ plugin install · ' + status);
|
||||
updatePluginInstall(api, summary || '⚙ plugin install');
|
||||
return;
|
||||
}
|
||||
// commands_changed: the set of available slash commands changed (usually
|
||||
// right after plugin_install). Show the count in the summary; expand to
|
||||
// see the full list.
|
||||
if (v.subtype === 'commands_changed') {
|
||||
const cmds = Array.isArray(v.commands) ? v.commands : [];
|
||||
if (!cmds.length) {
|
||||
api.row('note', '⚙ commands changed · (empty)');
|
||||
return;
|
||||
}
|
||||
const summary = '⚙ commands changed · ' + cmds.length + ' available';
|
||||
const body = cmds.map((c) => {
|
||||
const aliases = c.aliases && c.aliases.length
|
||||
? ' [/' + c.aliases.join(', /') + ']' : '';
|
||||
return '/' + c.name + aliases;
|
||||
}).join('\n');
|
||||
api.details('note', summary, body);
|
||||
return;
|
||||
}
|
||||
// compact_boundary: claude completed a compaction pass. The metadata
|
||||
// carries pre/post token counts, duration, and the trigger (manual vs
|
||||
// auto). Show a single summary line so the operator can gauge how much
|
||||
// context was shed.
|
||||
if (v.subtype === 'compact_boundary') {
|
||||
const m = v.compact_metadata || {};
|
||||
const parts = ['⚙ compact'];
|
||||
if (m.trigger) parts.push(m.trigger);
|
||||
if (m.pre_tokens != null && m.post_tokens != null) {
|
||||
const fmtTok = (n) => n >= 1_000_000 ? (n / 1_000_000).toFixed(1) + 'M'
|
||||
: n >= 1_000 ? Math.round(n / 1000) + 'k'
|
||||
: String(n);
|
||||
parts.push(fmtTok(m.pre_tokens) + '→' + fmtTok(m.post_tokens) + ' tokens');
|
||||
}
|
||||
if (m.duration_ms != null) {
|
||||
const ms = m.duration_ms;
|
||||
parts.push(ms < 1000 ? ms + 'ms' : (ms / 1000).toFixed(1) + 's');
|
||||
}
|
||||
api.row('note', parts.join(' · '));
|
||||
return;
|
||||
}
|
||||
// Bare `status` ticks (claude's own generic "still working" signal,
|
||||
// no detail beyond the label) — collapse consecutive ticks into one
|
||||
// updating row instead of a fresh note each (see `makeCoalescer`
|
||||
// above). When the harness state is `compacting` (set by the
|
||||
// `turn_state_changed` SSE event), show elapsed time via `stateSince`
|
||||
// — the same source the state badge uses — so the terminal reflects
|
||||
// compaction progress; otherwise fall back to the generic label.
|
||||
// status: backend provides the base label; when the harness state is
|
||||
// `compacting` we override with elapsed time from `stateSince` — a
|
||||
// client-side wall-clock value the backend can't know at emit time.
|
||||
if (v.subtype === 'status') {
|
||||
let label = '⚙ status';
|
||||
let label = summary || '⚙ status';
|
||||
if (stateName === 'compacting') {
|
||||
const elapsed = Math.round((Date.now() - stateSince) / 1000);
|
||||
label = '⚙ compact · ' + elapsed + 's…';
|
||||
|
|
@ -2024,10 +1713,13 @@ window.marked = marked;
|
|||
updateStatus(api, label);
|
||||
return;
|
||||
}
|
||||
// Other system subtypes (context_window_exceeded, etc.) — render a
|
||||
// muted note with the subtype label; reserve the loud orange `sys`
|
||||
// catch-all for truly unrecognised top-level types.
|
||||
api.row('note', '⚙ ' + (v.subtype || 'system'));
|
||||
// details: expandable row with _summary as header, _body as content.
|
||||
if (cat === 'details') {
|
||||
api.details('note', summary || '⚙ ' + (v.subtype || ''), v._body || '');
|
||||
return;
|
||||
}
|
||||
// note (and any unknown category): single summary line.
|
||||
api.row('note', summary || '⚙ ' + (v.subtype || 'system'));
|
||||
return;
|
||||
}
|
||||
// Background-task subagent events (claude's `Task` tool spawns
|
||||
|
|
@ -2052,8 +1744,15 @@ window.marked = marked;
|
|||
}
|
||||
else if (c.type === 'tool_use') {
|
||||
if (c.id && c.name) toolNameById.set(c.id, c.name);
|
||||
if (!renderRichToolUse(c, api)) {
|
||||
api.row('tool-use', fmtToolUse(c), toolIcon(c.name));
|
||||
// `_category: "rich"` is stamped by the backend on tools that
|
||||
// have full-body renderers (Write/Edit diffs, send/ask/answer
|
||||
// message bodies). Flat-row tools use backend _icon/_summary.
|
||||
if (c._category === 'rich') {
|
||||
if (!renderRichToolUse(c, api)) {
|
||||
api.row('tool-use', c._summary || c.name || '?', c._icon || '🔧');
|
||||
}
|
||||
} else {
|
||||
api.row('tool-use', c._summary || c.name || '?', c._icon || '🔧');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue