From 45b269df0e9bc025c9711215c67b32e178a1586e Mon Sep 17 00:00:00 2001 From: Juan Francisco Lebrero Date: Fri, 13 Mar 2026 18:50:02 -0300 Subject: [PATCH] fix: use plain language instead of OAuth jargon in onboarding --- src/onboarding.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/onboarding.ts b/src/onboarding.ts index 7460df931..f96262607 100644 --- a/src/onboarding.ts +++ b/src/onboarding.ts @@ -255,8 +255,8 @@ async function runLlmStep(p: ClackModule, pc: PicoModule, authStorage: AuthStora const method = await p.select({ message: 'How do you want to sign in?', options: [ - { value: 'browser', label: 'Browser login (OAuth)', hint: 'recommended — opens your browser' }, - { value: 'api-key', label: 'API key', hint: 'paste a key from your provider' }, + { value: 'browser', label: 'Sign in with your browser', hint: 'recommended — same login as claude.ai / ChatGPT' }, + { value: 'api-key', label: 'Paste an API key', hint: 'from your provider dashboard' }, { value: 'skip', label: 'Skip for now', hint: 'use /login inside GSD later' }, ], })