tycono 0.3.14-beta.14 → 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.14",
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
@@ -714,8 +714,8 @@ export const App: React.FC = () => {
714
714
  );
715
715
  }
716
716
  return (
717
- <Box flexDirection="column" height={termHeight}>
718
- <Box flexGrow={1} flexDirection="column">
717
+ <Box 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