From 3d6ad162cd21949db3e90591d035db884c473b81 Mon Sep 17 00:00:00 2001 From: mawkone Date: Thu, 21 May 2026 17:24:12 -0700 Subject: [PATCH] feat(refactor): dynamic agent status ticker card across all execution rounds --- components/vibn-chat/chat-panel.tsx | 58 +++++++++-------------------- 1 file changed, 18 insertions(+), 40 deletions(-) diff --git a/components/vibn-chat/chat-panel.tsx b/components/vibn-chat/chat-panel.tsx index 00fff57f..fc02ef74 100644 --- a/components/vibn-chat/chat-panel.tsx +++ b/components/vibn-chat/chat-panel.tsx @@ -1683,53 +1683,31 @@ export function ChatPanel({ ))} - {sending && messages[messages.length - 1]?.role !== "assistant" && ( + {sending && (
-
- - V - -
-
- {[0, 1, 2].map((i) => ( - - ))} -
+ + + {messages[messages.length - 1]?.role !== "assistant" + ? "Vibn AI is formulating plan..." + : "Vibn AI is executing tools & planning next steps..."} +
)}