From 2b345280046b381910fe83ef7d60f459087e6487 Mon Sep 17 00:00:00 2001 From: Otto Date: Tue, 3 Feb 2026 19:36:44 +0000 Subject: [PATCH] fix(copilot): update homepage copy to focus on problem discovery MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update the CoPilot homepage to shift from 'what do you want?' to 'tell me about your problems'. This lowers the barrier to engagement by letting users describe their work frustrations instead of requiring them to identify automations themselves. Changes: - Headline: 'What do you want to automate?' → 'Tell me about your work — I'll find what to automate.' - Placeholder: Updated to prompt users to describe their role and frustrations - Quick actions: Changed from feature-oriented to problem-oriented prompts - Container width: max-w-2xl → max-w-3xl (to fit longer headline on one line) Resolves: SECRT-1876 --- .../frontend/src/app/(platform)/copilot/helpers.ts | 6 +++--- .../frontend/src/app/(platform)/copilot/page.tsx | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/autogpt_platform/frontend/src/app/(platform)/copilot/helpers.ts b/autogpt_platform/frontend/src/app/(platform)/copilot/helpers.ts index 692a5741f4..aa0fa84cce 100644 --- a/autogpt_platform/frontend/src/app/(platform)/copilot/helpers.ts +++ b/autogpt_platform/frontend/src/app/(platform)/copilot/helpers.ts @@ -26,8 +26,8 @@ export function buildCopilotChatUrl(prompt: string): string { export function getQuickActions(): string[] { return [ - "Show me what I can automate", - "Design a custom workflow", - "Help me with content creation", + "I don't know where to start, just ask me stuff", + "I do the same thing every week and it's killing me", + "Help me find where I'm wasting my time", ]; } diff --git a/autogpt_platform/frontend/src/app/(platform)/copilot/page.tsx b/autogpt_platform/frontend/src/app/(platform)/copilot/page.tsx index e9bc018c1b..ea6e969373 100644 --- a/autogpt_platform/frontend/src/app/(platform)/copilot/page.tsx +++ b/autogpt_platform/frontend/src/app/(platform)/copilot/page.tsx @@ -90,7 +90,7 @@ export default function CopilotPage() { ) : ( <> -
+
{greetingName} - What do you want to automate? + Tell me about your work — I'll find what to automate.