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
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"
|
|
718
|
-
<Box
|
|
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
|
-
|
|
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
|
|