diff --git a/vibn-frontend/components/vibn-chat/chat-panel.tsx b/vibn-frontend/components/vibn-chat/chat-panel.tsx
index 5527d77..1ad2041 100644
--- a/vibn-frontend/components/vibn-chat/chat-panel.tsx
+++ b/vibn-frontend/components/vibn-chat/chat-panel.tsx
@@ -427,26 +427,103 @@ function TimelineToolGroup({
return (
- {!allDone ? (
-
- ) : (
-
+
+
+ {expanded && (
+
+ {entries.map((e, i) => (
+
+
+
+ {friendlyToolName(e.name)}
+
+ {!e.result && e.status === "running" && (
+
...
+ )}
+ {e.result && (
+
+ — {e.result}
+
+ )}
+
+ ))}
+
)}
-
- {category} {count > 1 ? `(x${count})` : ""} {!allDone ? "..." : " ✓"}
-
);
}