From 31778a29772da7bf77a181a5d217c137228d7038 Mon Sep 17 00:00:00 2001 From: Apple Date: Sat, 29 Nov 2025 05:20:30 -0800 Subject: [PATCH] fix: add crew_info to AgentProfile type --- apps/web/src/lib/agent-dashboard.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/apps/web/src/lib/agent-dashboard.ts b/apps/web/src/lib/agent-dashboard.ts index 8e2b2e5c..a4626ac6 100644 --- a/apps/web/src/lib/agent-dashboard.ts +++ b/apps/web/src/lib/agent-dashboard.ts @@ -71,6 +71,12 @@ export interface CityPresence { }>; } +export interface AgentCrewInfo { + has_crew_team: boolean; + crew_team_key?: string | null; + matrix_room_id?: string | null; +} + export interface AgentProfile { agent_id: string; display_name: string; @@ -89,6 +95,7 @@ export interface AgentProfile { tags: string[]; dais: DAIS; city_presence?: CityPresence; + crew_info?: AgentCrewInfo | null; } export interface AgentNode {