chore: rename app branding to Agent Teams UI

This commit is contained in:
777genius 2026-04-18 10:34:47 +03:00
parent c70ebfe9a5
commit 787f5f28ed
13 changed files with 16 additions and 16 deletions

View file

@ -213,7 +213,7 @@
},
"build": {
"appId": "com.agent-teams.app",
"productName": "Claude Agent Teams UI",
"productName": "Agent Teams UI",
"directories": {
"output": "release"
},

View file

@ -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: {

View file

@ -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);

View file

@ -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 } : {}),
});

View file

@ -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

View file

@ -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)

View file

@ -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

View file

@ -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

View file

@ -172,7 +172,7 @@ export const AdvancedSection = ({
<div>
<div className="flex items-center gap-3">
<p className="text-sm font-medium" style={{ color: 'var(--color-text)' }}>
Claude Agent Teams UI
Agent Teams UI
</p>
{isElectron && (
<button

View file

@ -4,7 +4,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" href="./favicon.png" />
<title>Claude Agent Teams UI</title>
<title>Agent Teams UI</title>
<style>
/* Splash: animated gradient background */
#splash {
@ -124,7 +124,7 @@
<circle class="splash-node splash-core-fill" style="animation-delay:1s" cx="37" cy="19" r="2" fill="#ede9fe"/>
<circle class="splash-node splash-core-fill" style="animation-delay:2s" cx="28" cy="37" r="2.2" fill="#f3e8ff"/>
</svg>
<div id="splash-text">Claude Agent Teams UI</div>
<div id="splash-text">Agent Teams UI</div>
</div>
<div id="root"></div>
<script type="module" src="./main.tsx"></script>

View file

@ -1,5 +1,5 @@
/**
* Notification and configuration types for Claude Agent Teams UI.
* Notification and configuration types for Agent Teams UI.
*
* Re-exports types from shared for backwards compatibility.
* The canonical definitions are in @shared/types/notifications.

View file

@ -1,5 +1,5 @@
/**
* Notification and configuration types for Claude Agent Teams UI.
* Notification and configuration types for Agent Teams UI.
*
* These types define:
* - Detected errors from session files

View file

@ -1,5 +1,5 @@
/**
* Visualization-specific types for Claude Agent Teams UI.
* Visualization-specific types for Agent Teams UI.
*
* These types are used for waterfall chart visualization
* and are shared between main and renderer processes.