From 8cf2d41568a9fc62cc68ba50f6592f2838e2a631 Mon Sep 17 00:00:00 2001 From: iliya Date: Tue, 31 Mar 2026 13:02:05 +0300 Subject: [PATCH 1/2] fix(graph): improve text normalization in TeamGraphAdapter - Enhanced text processing to clean up raw task ID hashes and replace pipe separators with dashes. - Ensured consistent formatting for comments and inbox messages. --- .../features/agent-graph/adapters/TeamGraphAdapter.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/renderer/features/agent-graph/adapters/TeamGraphAdapter.ts b/src/renderer/features/agent-graph/adapters/TeamGraphAdapter.ts index 8dfb721c..dcfc19da 100644 --- a/src/renderer/features/agent-graph/adapters/TeamGraphAdapter.ts +++ b/src/renderer/features/agent-graph/adapters/TeamGraphAdapter.ts @@ -886,7 +886,13 @@ export class TeamGraphAdapter { kind: 'inbox' | 'comment', max = 52 ): string | undefined { - const normalized = text?.replace(/\s+/g, ' ').trim(); + let normalized = text?.replace(/\s+/g, ' ').trim(); + // Clean up raw task ID hashes like "#363e78de done|sent to review" → "done | sent to review" + if (normalized) { + normalized = normalized.replace(/#[a-f0-9]{6,}\s*/gi, '').trim(); + // Clean pipe separators + normalized = normalized.replace(/\|/g, ' - '); + } const prefix = kind === 'comment' ? '\u{1F4AC}' : '\u{2709}'; if (!normalized) return prefix; const clipped = From f4965b2cbd2282657a657806362647a8df962e8d Mon Sep 17 00:00:00 2001 From: iliya Date: Tue, 31 Mar 2026 18:49:14 +0300 Subject: [PATCH 2/2] docs: update Discord invite link to qtqSZSyuEc Made-with: Cursor --- .github/CONTRIBUTING.md | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 360e9185..ecd1659e 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -4,7 +4,7 @@ Thanks for contributing to Claude Agent Teams UI! ## Before You Start -For big features and major changes, please discuss them in our [Discord](https://discord.gg/RgBHMBsn) first so we can figure out the best approach together and avoid conflicts. +For big features and major changes, please discuss them in our [Discord](https://discord.gg/qtqSZSyuEc) first so we can figure out the best approach together and avoid conflicts. Small fixes, bug reports, and minor improvements are always welcome - just open a PR. diff --git a/README.md b/README.md index f1e04336..57a6c17d 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@

Latest Release  CI Status  - Discord + Discord