From ccd38152ab7d93884f9860f182caa6ef2e5cb5b6 Mon Sep 17 00:00:00 2001 From: claude code agent 227 Date: Fri, 3 Jul 2026 18:01:18 +0300 Subject: [PATCH] =?UTF-8?q?docs(ai-chat):=20correct=20AgentGlyph=20docstri?= =?UTF-8?q?ng=20=E2=80=94=20per-agent=20dark=20circle,=20not=20violet=20(#?= =?UTF-8?q?307=20F1)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The launcher-polish commit replaced the fixed violet AGENT_COLOR background with a per-agent dark hashed circle (agentGlyphBackground). Points 2 and 3 of the AgentGlyph image-source docstring still said 'violet circle' — update both to 'per-agent dark circle' so the doc matches the code. Co-Authored-By: Claude Opus 4.8 (1M context) --- apps/client/src/components/ui/agent-avatar-stack.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/client/src/components/ui/agent-avatar-stack.tsx b/apps/client/src/components/ui/agent-avatar-stack.tsx index fdf672c2..85eb2fe2 100644 --- a/apps/client/src/components/ui/agent-avatar-stack.tsx +++ b/apps/client/src/components/ui/agent-avatar-stack.tsx @@ -54,8 +54,8 @@ export function agentGlyphBackground(name: string): string { /** * The front avatar. Image-source priority (#300): * 1. agent.avatarUrl -> a real avatar image (external MCP agent account). - * 2. agent.emoji -> the role emoji on a violet circle. - * 3. otherwise -> the IconSparkles glyph on a violet circle (fallback). + * 2. agent.emoji -> the role emoji on a per-agent dark circle. + * 3. otherwise -> the IconSparkles glyph on a per-agent dark circle (fallback). */ function AgentGlyph({ agent }: { agent: AgentInfo }) { if (agent.avatarUrl) {