From 0bb6336eaf8a0e8c47407719863a8e8ba9f18382 Mon Sep 17 00:00:00 2001 From: dotta Date: Fri, 20 Mar 2026 08:22:45 -0500 Subject: [PATCH] Adjust default CEO onboarding task copy Co-Authored-By: Paperclip --- tests/e2e/onboarding.spec.ts | 2 +- ui/src/components/OnboardingWizard.tsx | 10 ++++------ 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/tests/e2e/onboarding.spec.ts b/tests/e2e/onboarding.spec.ts index c3c51423..a89fe114 100644 --- a/tests/e2e/onboarding.spec.ts +++ b/tests/e2e/onboarding.spec.ts @@ -125,7 +125,7 @@ test.describe("Onboarding wizard", () => { expect(task).toBeTruthy(); expect(task.assigneeAgentId).toBe(ceoAgent.id); expect(task.description).toContain( - "Your default CEO instructions are already installed" + "You are the CEO. You set the direction for the company." ); expect(task.description).not.toContain("github.com/paperclipai/companies"); diff --git a/ui/src/components/OnboardingWizard.tsx b/ui/src/components/OnboardingWizard.tsx index cdf0eef8..6d094971 100644 --- a/ui/src/components/OnboardingWizard.tsx +++ b/ui/src/components/OnboardingWizard.tsx @@ -62,12 +62,10 @@ type AdapterType = | "http" | "openclaw_gateway"; -const DEFAULT_TASK_DESCRIPTION = `Your default CEO instructions are already installed in your managed instruction bundle. +const DEFAULT_TASK_DESCRIPTION = `You are the CEO. You set the direction for the company. -Review your AGENTS.md, HEARTBEAT.md, SOUL.md, and TOOLS.md if you want to customize them, then: - -- set the initial direction for the company - hire a founding engineer +- write a hiring plan - break the roadmap into concrete tasks and start delegating work`; export function OnboardingWizard() { @@ -124,7 +122,7 @@ export function OnboardingWizard() { // Step 3 const [taskTitle, setTaskTitle] = useState( - "Set company direction and hire your first engineer" + "Hire your first engineer and create a hiring plan" ); const [taskDescription, setTaskDescription] = useState( DEFAULT_TASK_DESCRIPTION @@ -279,7 +277,7 @@ export function OnboardingWizard() { setAdapterEnvLoading(false); setForceUnsetAnthropicApiKey(false); setUnsetAnthropicLoading(false); - setTaskTitle("Set company direction and hire your first engineer"); + setTaskTitle("Hire your first engineer and create a hiring plan"); setTaskDescription(DEFAULT_TASK_DESCRIPTION); setCreatedCompanyId(null); setCreatedCompanyPrefix(null);