Skip to content

Commit 16bf3e5

Browse files
jsell-rhclaudemergify[bot]
authored
chore(ambient-ui): rebrand user-facing text from Ambient to ACP (#1672)
## Summary - Renames all user-facing "Ambient" / "Ambient Code Platform" strings to "ACP" in the ambient-ui component - 5 files, 7 lines changed — cosmetic only, no code identifiers or API paths changed ### Files changed | File | What changed | |------|-------------| | `layout.tsx` | Page title + meta description | | `app-sidebar.tsx` | Sidebar brand label | | `nav-header.tsx` | Breadcrumb root | | `page.tsx` | Empty state message | | `README.md` | Heading + description | ## Test plan - [x] `npm run build` passes with zero errors and zero warnings 🤖 Generated with [Claude Code](https://claude.com/claude-code) <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Documentation** * Updated README reflecting product rebrand from "Ambient UI" to "ACP UI." * **Chores** * Updated product name and descriptions throughout the application interface, including page titles, sidebar branding, navigation headers, and empty-state messaging. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
1 parent 5ea8bef commit 16bf3e5

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

components/ambient-ui/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Ambient UI
1+
# ACP UI
22

3-
Operations console for the Ambient Code Platform. Next.js BFF with OIDC authentication (Keycloak), shadcn/ui components, and Red Hat design system.
3+
Operations console for ACP. Next.js BFF with OIDC authentication (Keycloak), shadcn/ui components, and Red Hat design system.
44

55
## Local Development
66

components/ambient-ui/src/app/(dashboard)/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export default function ProjectPickerPage() {
6363
<EmptyState
6464
icon={FolderOpen}
6565
title="No projects found"
66-
description="Create a project to get started with the Ambient Code Platform."
66+
description="Create a project to get started with ACP."
6767
/>
6868
<div className="flex justify-center">
6969
<CreateProjectDialog />

components/ambient-ui/src/app/layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ const redHatMono = Red_Hat_Mono({
1616
})
1717

1818
export const metadata: Metadata = {
19-
title: "Ambient UI",
20-
description: "Ambient Code Platform operations console",
19+
title: "ACP",
20+
description: "Agent Control Plane operations console",
2121
}
2222

2323
export default function RootLayout({

components/ambient-ui/src/components/app-sidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ export function AppSidebar({ projectId }: AppSidebarProps) {
148148
<SidebarHeader>
149149
<div className="flex items-center gap-2 px-2 py-1.5">
150150
<Bot className="size-5 text-primary" />
151-
<span className="text-sm font-semibold tracking-tight">Ambient</span>
151+
<span className="text-sm font-semibold tracking-tight">ACP</span>
152152
</div>
153153
<ProjectSelector projectId={projectId} />
154154
</SidebarHeader>

components/ambient-ui/src/components/nav-header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ export function NavHeader({ projectId, projectName, pageName, sessionName, detai
122122
<BreadcrumbItem>
123123
<BreadcrumbLink asChild>
124124
<Link href="/">
125-
<span>Ambient</span>
125+
<span>ACP</span>
126126
</Link>
127127
</BreadcrumbLink>
128128
</BreadcrumbItem>

0 commit comments

Comments
 (0)