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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tycono",
3
- "version": "0.3.14-beta.13",
3
+ "version": "0.3.14-beta.15",
4
4
  "description": "Build an AI company. Watch them work.",
5
5
  "type": "module",
6
6
  "bin": {
package/src/tui/app.tsx CHANGED
@@ -715,7 +715,7 @@ export const App: React.FC = () => {
715
715
  }
716
716
  return (
717
717
  <Box flexDirection="column">
718
- <Box flexGrow={1} flexDirection="column">
718
+ <Box flexDirection="column">
719
719
  <PanelMode
720
720
  tree={orgTree}
721
721
  flatRoles={flatRoleIds}
@@ -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
- default: return null;
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 ? 'Waiting for events...' : 'No active stream.');
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}`);