diff --git a/package.json b/package.json index 1d963d43..f13abadc 100644 --- a/package.json +++ b/package.json @@ -213,7 +213,7 @@ }, "build": { "appId": "com.agent-teams.app", - "productName": "Claude Agent Teams UI", + "productName": "Agent Teams UI", "directories": { "output": "release" }, diff --git a/src/features/recent-projects/main/infrastructure/codex/CodexAppServerClient.ts b/src/features/recent-projects/main/infrastructure/codex/CodexAppServerClient.ts index 56985538..86805355 100644 --- a/src/features/recent-projects/main/infrastructure/codex/CodexAppServerClient.ts +++ b/src/features/recent-projects/main/infrastructure/codex/CodexAppServerClient.ts @@ -199,7 +199,7 @@ export class CodexAppServerClient { { clientInfo: { name: 'claude-agent-teams-ui', - title: 'Claude Agent Teams UI', + title: 'Agent Teams UI', version: '0.1.0', }, capabilities: { diff --git a/src/main/index.ts b/src/main/index.ts index 1238087d..ce07cace 100644 --- a/src/main/index.ts +++ b/src/main/index.ts @@ -1,5 +1,5 @@ /** - * Main process entry point for Claude Agent Teams UI. + * Main process entry point for Agent Teams UI. * * Responsibilities: * - Initialize Electron app and main window @@ -1212,7 +1212,7 @@ function createWindow(): void { backgroundColor: '#1a1a1a', ...(useNativeTitleBar ? {} : { titleBarStyle: 'hidden' as const }), ...(isMac && { trafficLightPosition: getTrafficLightPositionForZoom(1) }), - title: 'Claude Agent Teams UI', + title: 'Agent Teams UI', }); markRendererUnavailable(mainWindow); diff --git a/src/main/services/infrastructure/NotificationManager.ts b/src/main/services/infrastructure/NotificationManager.ts index 1f493c96..ba3ce0ab 100644 --- a/src/main/services/infrastructure/NotificationManager.ts +++ b/src/main/services/infrastructure/NotificationManager.ts @@ -543,10 +543,10 @@ export class NotificationManager extends EventEmitter { logger.debug(`[test-notification] creating Notification (platform=${process.platform})`); const notification = new NotificationClass({ title: 'Test Notification', - ...(isMac ? { subtitle: 'Claude Agent Teams UI' } : {}), + ...(isMac ? { subtitle: 'Agent Teams UI' } : {}), body: isMac ? 'Notifications are working correctly!' - : 'Claude Agent Teams UI\nNotifications are working correctly!', + : 'Agent Teams UI\nNotifications are working correctly!', ...(iconPath ? { icon: iconPath } : {}), }); diff --git a/src/main/standalone.ts b/src/main/standalone.ts index 0a3e1083..d1186be3 100644 --- a/src/main/standalone.ts +++ b/src/main/standalone.ts @@ -1,5 +1,5 @@ /** - * Standalone (non-Electron) entry point for Claude Agent Teams UI. + * Standalone (non-Electron) entry point for Agent Teams UI. * * Runs the HTTP server + API without Electron, suitable for Docker * or any headless/remote environment. The renderer is served as diff --git a/src/main/types/chunks.ts b/src/main/types/chunks.ts index d24d3913..fcd9e54c 100644 --- a/src/main/types/chunks.ts +++ b/src/main/types/chunks.ts @@ -1,5 +1,5 @@ /** - * Chunk and visualization types for Claude Agent Teams UI. + * Chunk and visualization types for Agent Teams UI. * * This module contains: * - Chunk types (UserChunk, AIChunk, SystemChunk, CompactChunk) diff --git a/src/main/types/domain.ts b/src/main/types/domain.ts index 85a67e06..1c2595ab 100644 --- a/src/main/types/domain.ts +++ b/src/main/types/domain.ts @@ -1,5 +1,5 @@ /** - * Domain/business entity types for Claude Agent Teams UI. + * Domain/business entity types for Agent Teams UI. * * These types represent the application's domain model: * - Projects and sessions diff --git a/src/main/types/messages.ts b/src/main/types/messages.ts index 79f6652e..1b496d9c 100644 --- a/src/main/types/messages.ts +++ b/src/main/types/messages.ts @@ -1,5 +1,5 @@ /** - * Parsed message types and type guards for Claude Agent Teams UI. + * Parsed message types and type guards for Agent Teams UI. * * ParsedMessage is the application's internal representation after parsing * raw JSONL entries. This module also contains type guards for classifying diff --git a/src/renderer/components/settings/sections/AdvancedSection.tsx b/src/renderer/components/settings/sections/AdvancedSection.tsx index 086599af..949a3c00 100644 --- a/src/renderer/components/settings/sections/AdvancedSection.tsx +++ b/src/renderer/components/settings/sections/AdvancedSection.tsx @@ -172,7 +172,7 @@ export const AdvancedSection = ({

- Claude Agent Teams UI + Agent Teams UI

{isElectron && (