Skip to content

Commit 0d9a2f8

Browse files
committed
copy: replace agent-architecture chat starter with job-oriented alternative
Replace "Which specialist should I start with?" with "What's the first marketing deliverable I should create?" to reinforce the job-first mental model. Update the chat empty state subtitle to emphasize deliverables and outputs over generic strategy language.
1 parent 32eb85d commit 0d9a2f8

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

apps/desktop/src/features/chat/components/ChatWorkspace.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { Chat, useChat } from "@ai-sdk/react";
22
import {
33
ArrowRightIcon,
44
BotIcon,
5-
CalendarIcon,
65
CopyIcon,
76
CrosshairIcon,
87
FileTextIcon,
@@ -230,7 +229,7 @@ interface ChatWorkspaceProps {
230229

231230
const DEFAULT_STARTER_PROMPTS: { icon: LucideIcon; text: string }[] = [
232231
{ icon: TrendingUpIcon, text: "What's the highest-leverage marketing move for my company right now?" },
233-
{ icon: CalendarIcon, text: "Which specialist should I start with?" },
232+
{ icon: FileTextIcon, text: "What's the first marketing deliverable I should create?" },
234233
{ icon: CrosshairIcon, text: "Summarize opportunities across all marketing channels." },
235234
];
236235

@@ -721,7 +720,7 @@ function ChatSessionView({
721720
<p className="mx-auto max-w-sm text-[13px] leading-relaxed text-muted-foreground/50">
722721
{effectiveSpecialistMeta
723722
? effectiveSpecialistMeta.role
724-
: "Ask your AI CMO about marketing strategy, growth, and content."}
723+
: "Get marketing deliverables, strategy recommendations, and competitive insights."}
725724
</p>
726725
</div>
727726
</div>

apps/desktop/src/features/chat/components/chat-starter-prompts-scoping.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ void test("DEFAULT_STARTER_PROMPTS contains generic CMO starters", () => {
6666
"Default starters must include generic CMO prompt about highest-leverage move",
6767
);
6868
assert.ok(
69-
src.includes("Which specialist should I start with"),
70-
"Default starters must include prompt about which specialist to start with",
69+
src.includes("first marketing deliverable I should create"),
70+
"Default starters must include job-oriented prompt about first deliverable",
7171
);
7272
assert.ok(
7373
src.includes("Summarize opportunities"),

0 commit comments

Comments
 (0)