tycono 0.3.14-beta.17 → 0.3.14-beta.18

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.17",
3
+ "version": "0.3.14-beta.18",
4
4
  "description": "Build an AI company. Watch them work.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -162,7 +162,12 @@ const PanelModeInner: React.FC<PanelModeProps> = ({
162
162
  if (line) rightContentLines.push(line.slice(0, rightWidth));
163
163
  }
164
164
  if (rightContentLines.length === 0) {
165
- rightContentLines.push(waveId ? `Waiting... (total ${events.length} events)` : 'No active stream. Type a directive to start.');
165
+ if (selectedRoleId && events.length > 0) {
166
+ rightContentLines.push(`No events for ${selectedRoleId} (${events.length} total)`);
167
+ rightContentLines.push('Press Enter to show all roles');
168
+ } else {
169
+ rightContentLines.push(waveId ? `Waiting for events... (${events.length} in buffer)` : 'No active stream. Type a directive to start.');
170
+ }
166
171
  }
167
172
  } else if (rightTab === 'info') {
168
173
  rightContentLines.push(`Wave: ${focusedWave?.waveId ?? 'none'}`);