tycono 0.1.96-beta.34 → 0.1.96-beta.35

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.1.96-beta.34",
3
+ "version": "0.1.96-beta.35",
4
4
  "description": "Build an AI company. Watch them work.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -172,20 +172,10 @@ export const PanelMode: React.FC<PanelModeProps> = ({
172
172
  {/* Left: Wave title + Org Tree + Wave tabs */}
173
173
  <Box flexDirection="column" width={leftWidth}>
174
174
  {/* Wave title */}
175
- <Box paddingX={1} marginBottom={0}>
176
- <Text color="green" bold>
177
- W{focusedWaveIndex}
178
- </Text>
179
- <Text color="gray"> </Text>
180
- <Text color="white" wrap="truncate">
181
- {focusedWave?.directive ? focusedWave.directive.slice(0, leftWidth - 6) : '(idle)'}
182
- </Text>
183
- </Box>
184
-
185
- {/* Session count */}
186
- {waveSessionCount > 0 && (
187
- <Box paddingX={1}>
188
- <Text color="gray">{waveSessionCount} sessions</Text>
175
+ {focusedWaveIndex > 0 && (
176
+ <Box paddingX={1} marginBottom={0}>
177
+ <Text color="green" bold>Wave {focusedWaveIndex}</Text>
178
+ {waveSessionCount > 0 && <Text color="gray"> ({waveSessionCount})</Text>}
189
179
  </Box>
190
180
  )}
191
181
 
@@ -198,21 +188,19 @@ export const PanelMode: React.FC<PanelModeProps> = ({
198
188
  ceoStatus={waveScopedStatuses['ceo'] ?? 'idle'}
199
189
  />
200
190
 
201
- {/* Wave tabs at bottom */}
191
+ {/* Wave tabs at bottom — compact inline */}
202
192
  {waves.length > 1 && (
203
193
  <Box paddingX={1} marginTop={1}>
194
+ <Text color="gray">W </Text>
204
195
  {waves.map((w, i) => {
205
196
  const isFocused = w.waveId === focusedWaveId;
206
197
  return (
207
- <Box key={w.waveId} marginRight={1}>
208
- <Text
209
- color={isFocused ? 'green' : 'gray'}
210
- bold={isFocused}
211
- inverse={isFocused}
212
- >
213
- {` ${i + 1} `}
214
- </Text>
215
- </Box>
198
+ <Text key={w.waveId}
199
+ color={isFocused ? 'green' : 'gray'}
200
+ bold={isFocused}
201
+ >
202
+ {isFocused ? `[${i + 1}]` : ` ${i + 1} `}
203
+ </Text>
216
204
  );
217
205
  })}
218
206
  </Box>