rename: replace all user-facing 'Atlas' references with 'Vibn'
Updated UI text in: project-shell (tab label), AtlasChat (sender name), FreshIdeaMain, TypeSelector, MigrateSetup, ChatImportSetup, FreshIdeaSetup, CodeImportSetup, prd/page, build/page, projects/page, deployment/page, activity/page, layout (page title/description), atlas-chat API route. Code identifiers (AtlasChat component name, file names) unchanged. Made-with: Cursor
This commit is contained in:
@@ -32,7 +32,7 @@ function typeColor(t: string) {
|
||||
|
||||
const FILTERS = [
|
||||
{ id: "all", label: "All" },
|
||||
{ id: "atlas", label: "Atlas" },
|
||||
{ id: "atlas", label: "Vibn" },
|
||||
{ id: "build", label: "Builds" },
|
||||
{ id: "deploy", label: "Deploys" },
|
||||
{ id: "user", label: "You" },
|
||||
|
||||
@@ -1022,14 +1022,14 @@ function PrdContent({ projectId }: { projectId: string }) {
|
||||
)}
|
||||
{!s.isDone && (
|
||||
<div style={{ marginTop: 5, marginLeft: 32, fontSize: "0.7rem", color: "#c5c0b8" }}>
|
||||
{s.phaseId ? "Complete this phase in Atlas" : "Generated when PRD is finalized"}
|
||||
{s.phaseId ? "Complete this phase in Vibn" : "Generated when PRD is finalized"}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
))}
|
||||
|
||||
{doneCount === 0 && (
|
||||
<p style={{ fontSize: "0.76rem", color: "#b5b0a6", marginTop: 16, textAlign: "center" }}>Continue chatting with Atlas — saved phases appear here automatically.</p>
|
||||
<p style={{ fontSize: "0.76rem", color: "#b5b0a6", marginTop: 16, textAlign: "center" }}>Continue chatting with Vibn — saved phases appear here automatically.</p>
|
||||
)}
|
||||
</div>
|
||||
)}
|
||||
|
||||
@@ -140,7 +140,7 @@ export default function DeploymentPage() {
|
||||
<div style={{ padding: "18px 0", textAlign: "center" }}>
|
||||
<p style={{ fontSize: "0.82rem", color: "#a09a90", marginBottom: 12 }}>
|
||||
{!hasPRD
|
||||
? "Complete your PRD with Atlas first, then build and deploy."
|
||||
? "Complete your PRD with Vibn first, then build and deploy."
|
||||
: !hasRepo
|
||||
? "No repository yet — the Architect agent will scaffold one from your PRD."
|
||||
: "No deployment yet — kick off a build to get a live URL."}
|
||||
|
||||
@@ -374,7 +374,7 @@ export default function PRDPage() {
|
||||
{!s.isDone && (
|
||||
<div style={{ marginTop: 6, marginLeft: 36, fontSize: "0.72rem", color: "#c5c0b8" }}>
|
||||
{s.phaseId
|
||||
? `Complete the ${s.savedPhase ? s.savedPhase.title : "discovery"} phase in Atlas`
|
||||
? `Complete the ${s.savedPhase ? s.savedPhase.title : "discovery"} phase in Vibn`
|
||||
: "Will be generated when PRD is finalized"}
|
||||
</div>
|
||||
)}
|
||||
@@ -383,7 +383,7 @@ export default function PRDPage() {
|
||||
|
||||
{doneCount === 0 && (
|
||||
<p style={{ fontSize: "0.78rem", color: "#b5b0a6", marginTop: 20, textAlign: "center" }}>
|
||||
Continue chatting with Atlas — saved phases will appear here automatically.
|
||||
Continue chatting with Vibn — saved phases will appear here automatically.
|
||||
</p>
|
||||
)}
|
||||
</div>
|
||||
|
||||
@@ -299,7 +299,7 @@ export default function ProjectsPage() {
|
||||
No projects yet
|
||||
</h3>
|
||||
<p style={{ fontSize: "0.82rem", color: "#a09a90", lineHeight: 1.6, marginBottom: 24 }}>
|
||||
Tell Atlas what you want to build and it will figure out the rest.
|
||||
Tell Vibn what you want to build and it will figure out the rest.
|
||||
</p>
|
||||
<button
|
||||
onClick={() => setShowNew(true)}
|
||||
|
||||
@@ -92,7 +92,7 @@ Operating principles:
|
||||
for (const p of phaseRows) {
|
||||
lines.push(`- ${p.title}: ${p.summary}`);
|
||||
}
|
||||
lines.push(`(PRD not yet finalized — Atlas discovery is in progress)`);
|
||||
lines.push(`(PRD not yet finalized — Vibn discovery is in progress)`);
|
||||
} else {
|
||||
lines.push(`\n## Product discovery: not yet started`);
|
||||
}
|
||||
|
||||
@@ -133,7 +133,7 @@ export async function POST(
|
||||
body: JSON.stringify({
|
||||
// For init, send the greeting prompt but don't store it as a user message
|
||||
message: isInit
|
||||
? "Begin the conversation. Introduce yourself as Atlas and ask what the user is building. Do not acknowledge this as an internal trigger."
|
||||
? "Begin the conversation. Introduce yourself as Vibn and ask what the user is building. Do not acknowledge this as an internal trigger."
|
||||
: message,
|
||||
session_id: sessionId,
|
||||
history,
|
||||
@@ -146,7 +146,7 @@ export async function POST(
|
||||
const text = await res.text();
|
||||
console.error("[atlas-chat] Agent runner error:", text);
|
||||
return NextResponse.json(
|
||||
{ error: "Atlas is unavailable. Please try again." },
|
||||
{ error: "Vibn is unavailable. Please try again." },
|
||||
{ status: 502 }
|
||||
);
|
||||
}
|
||||
|
||||
@@ -24,8 +24,8 @@ const ibmPlexMono = IBM_Plex_Mono({
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "VIBN — Build with Atlas",
|
||||
description: "Chat with Atlas to define your product, then let AI build it.",
|
||||
title: "VIBN — Build with Vibn",
|
||||
description: "Chat with Vibn to define your product, then let AI build it.",
|
||||
manifest: "/manifest.json",
|
||||
appleWebApp: {
|
||||
capable: true,
|
||||
|
||||
Reference in New Issue
Block a user