From 89a1193f32f0208c0ff3828b5bd3b8924aedec86 Mon Sep 17 00:00:00 2001 From: ciregenz Date: Sun, 14 Jun 2026 01:59:49 -0700 Subject: [PATCH] [eric] onboarding: welcome_open cursor shows a quick readable popup then clicks New Agent promptly (snappier) --- .../app/components/Onboarding/steps/step00_welcomeNudge.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/components/Onboarding/steps/step00_welcomeNudge.ts b/frontend/src/app/components/Onboarding/steps/step00_welcomeNudge.ts index a8bba8e7..c126f813 100644 --- a/frontend/src/app/components/Onboarding/steps/step00_welcomeNudge.ts +++ b/frontend/src/app/components/Onboarding/steps/step00_welcomeNudge.ts @@ -11,9 +11,10 @@ export const welcomeOpenStep: OnboardingStep = { title: 'Welcome', description: '', ops: [ - { kind: 'delay', ms: 750 }, // let the pop + spark settle + { kind: 'delay', ms: 400 }, // brief beat after the pop + spark { kind: 'move_to', target: S.newAgentButton }, - { kind: 'delay', ms: 550 }, // pause, then click + { kind: 'popup', text: 'Let me open a chat for you.' }, + { kind: 'delay', ms: 650 }, // a moment to read, then click { kind: 'click', target: S.newAgentButton, simulate: true }, // spawns the welcome chat { kind: 'outro' }, ],