From b31a5b0ce9fa8be5e3316086390c0b04229ade23 Mon Sep 17 00:00:00 2001 From: David Hagerty Date: Wed, 11 Feb 2026 14:24:58 -0500 Subject: [PATCH] feat(web): add AgentStatusBadge component MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Implements status badge component showing agent ID (truncated) and status with colored backgrounds and pulsing/animated indicators for active states. Status colors: - spawning/initializing → pulsing blue - working → animated green - reporting → yellow - completed → solid green - failed → solid red Co-Authored-By: Claude Opus 4.6 --- web/src/components/AgentStatusBadge.svelte | 114 +++++++++++++++++++++ 1 file changed, 114 insertions(+) create mode 100644 web/src/components/AgentStatusBadge.svelte diff --git a/web/src/components/AgentStatusBadge.svelte b/web/src/components/AgentStatusBadge.svelte new file mode 100644 index 0000000..b4cc4c7 --- /dev/null +++ b/web/src/components/AgentStatusBadge.svelte @@ -0,0 +1,114 @@ + + +
+ + + {displayId} + {status} + +
+ + -- 2.51.2