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 06887e59c7 - Show all commits

View File

@@ -59,9 +59,9 @@ export function BottomBar({
<Box> <Box>
{hasTokens ? ( {hasTokens ? (
<> <>
<Text dimColor>^{formatTokens(tokenUsage.input)}</Text> <Text dimColor>{formatTokens(tokenUsage.input)}</Text>
<Text dimColor>{' '}</Text> <Text dimColor>{' '}</Text>
<Text dimColor>v{formatTokens(tokenUsage.output)}</Text> <Text dimColor>{formatTokens(tokenUsage.output)}</Text>
{tokenUsage.cacheRead > 0 && ( {tokenUsage.cacheRead > 0 && (
<> <>
<Text dimColor>{' '}</Text> <Text dimColor>{' '}</Text>
@@ -90,7 +90,7 @@ export function BottomBar({
)} )}
</> </>
) : ( ) : (
<Text dimColor>^0 v0 $0.000</Text> <Text dimColor>0 0 $0.000</Text>
)} )}
</Box> </Box>
<Box> <Box>