fix(cli): refine alien UI - remove feet, move alien to exit stats

- Remove feet from alien (use phantom space for 4th line)
- Move alien next to session stats on exit screen instead of resume commands

👾 Generated with [Letta Code](https://letta.com)

Co-Authored-By: Letta <noreply@letta.com>
This commit is contained in:
cpacker
2026-01-31 23:15:11 -08:00
parent b7244ffa88
commit f228ab18f8
2 changed files with 53 additions and 46 deletions

View File

@@ -44,7 +44,7 @@ export const AgentInfoBar = memo(function AgentInfoBar({
}
// Alien ASCII art lines (4 lines tall, with 2-char indent + extra space before text)
const alienLines = [" ▗▖▗▖ ", " ▙█▜▛█▟ ", " ▝▜▛▜▛▘ ", " "];
const alienLines = [" ▗▖▗▖ ", " ▙█▜▛█▟ ", " ▝▜▛▜▛▘ ", " "];
return (
<Box flexDirection="column">
@@ -107,9 +107,9 @@ export const AgentInfoBar = memo(function AgentInfoBar({
<Text dimColor>{agentId}</Text>
</Box>
{/* Alien + Conversation ID */}
{/* Phantom alien row + Conversation ID */}
<Box>
<Text color={colors.footer.agentName}>{alienLines[3]}</Text>
<Text>{alienLines[3]}</Text>
{conversationId && conversationId !== "default" ? (
<Text dimColor>{conversationId}</Text>
) : (