tycono 0.3.14-beta.13 → 0.3.14-beta.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/src/tui/app.tsx
CHANGED
|
@@ -71,7 +71,9 @@ function eventToOneLiner(event: SSEEvent): string | null {
|
|
|
71
71
|
case 'msg:done': return `${time} ${role} \u2713 Done`;
|
|
72
72
|
case 'msg:error': return `${time} ${role} \u2717 Error`;
|
|
73
73
|
case 'dispatch:start': return `${time} ${role} \u21D2 ${event.data.targetRole as string ?? ''}`;
|
|
74
|
-
|
|
74
|
+
case 'tool:result': return `${time} ${role} \u2190 ${(event.data.name as string) ?? 'done'}`;
|
|
75
|
+
case 'msg:awaiting_input': return `${time} ${role} ? awaiting input`;
|
|
76
|
+
default: return null; // skip internal: turn-complete, trace, heartbeat
|
|
75
77
|
}
|
|
76
78
|
}
|
|
77
79
|
|
|
@@ -402,7 +404,7 @@ const PanelModeInner: React.FC<PanelModeProps> = ({
|
|
|
402
404
|
const line = eventToOneLiner(ev);
|
|
403
405
|
if (line) rightLines.push(line.slice(0, rightWidth));
|
|
404
406
|
}
|
|
405
|
-
if (rightLines.length === 0) rightLines.push(waveId ?
|
|
407
|
+
if (rightLines.length === 0) rightLines.push(waveId ? `Waiting... (${events.length} events, waveId=${waveId?.slice(-8)})` : 'No active stream.');
|
|
406
408
|
} else if (rightTab === 'info') {
|
|
407
409
|
rightLines.push(`Wave: ${focusedWave?.waveId ?? 'none'}`);
|
|
408
410
|
if (wavePreset) rightLines.push(`Preset: ${wavePreset}`);
|