From 1cfc94e1ddb528785e66144dd18f3a5b14210a80 Mon Sep 17 00:00:00 2001 From: Charles Packer Date: Thu, 22 Jan 2026 22:10:36 -0800 Subject: [PATCH] fix: improve agent info bar layout to prevent overflow (#652) Co-authored-by: Letta --- src/cli/components/AgentInfoBar.tsx | 44 ++++++++++++++++++----------- 1 file changed, 27 insertions(+), 17 deletions(-) diff --git a/src/cli/components/AgentInfoBar.tsx b/src/cli/components/AgentInfoBar.tsx index 557be3a..0373115 100644 --- a/src/cli/components/AgentInfoBar.tsx +++ b/src/cli/components/AgentInfoBar.tsx @@ -78,27 +78,37 @@ export const AgentInfoBar = memo(function AgentInfoBar({ ) : ( (type /pin to pin agent) )} - · {agentId} + {isCloudUser && adeUrl && !isTmux && ( + <> + · + + Open in ADE ↗ + + + )} + {isCloudUser && adeUrl && isTmux && ( + · Open in ADE: {adeUrl} + )} + {isCloudUser && ( + <> + · + + View usage ↗ + + + )} + {!isCloudUser && · {serverUrl}} + + {/* Agent ID and conversation ID on separate line */} + + + {" "} + {agentId} + {conversationId && conversationId !== "default" && ( · {conversationId} )} - - {" "} - {isCloudUser && adeUrl && !isTmux && ( - - Open in ADE ↗ - - )} - {isCloudUser && adeUrl && isTmux && Open in ADE: {adeUrl}} - {isCloudUser && {" · "}} - {isCloudUser && ( - - View usage ↗ - - )} - {!isCloudUser && {serverUrl}} - ); });