feat(cli): TUI complete overhaul — components, sidebar, search, branding #157

Merged
jason.woltje merged 26 commits from feat/p7-tui-improvements into main 2026-03-15 22:17:20 +00:00
Showing only changes of commit e6708c18ed - Show all commits

View File

@@ -55,7 +55,7 @@ export function BottomBar({
</Box>
{/* Line 2: token stats ····· (provider) model */}
<Box justifyContent="space-between">
<Box justifyContent="space-between" minHeight={1}>
<Box>
{hasTokens ? (
<>
@@ -90,16 +90,14 @@ export function BottomBar({
)}
</>
) : (
<Text dimColor></Text>
<Text dimColor>^0 v0 $0.000</Text>
)}
</Box>
<Box>
{(providerName ?? modelName) && (
<Text dimColor>
{providerName ? `(${providerName}) ` : ''}
{modelName ?? ''}
</Text>
)}
<Text dimColor>
{providerName ? `(${providerName}) ` : ''}
{modelName ?? 'awaiting model'}
</Text>
</Box>
</Box>
</Box>