From cb336456fb395ddfd834ffabf293dd593e30a1ca Mon Sep 17 00:00:00 2001 From: george-keygraph Date: Thu, 13 Aug 2026 15:43:29 -0700 Subject: [PATCH] fix(cli): drop "recommended" from the Anthropic setup option The provider picker labelled Anthropic as recommended while every other provider carried a neutral hint. Match the others. Co-Authored-By: Claude Opus 5 --- apps/cli/src/commands/setup.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/cli/src/commands/setup.ts b/apps/cli/src/commands/setup.ts index 11bd69e..8051052 100644 --- a/apps/cli/src/commands/setup.ts +++ b/apps/cli/src/commands/setup.ts @@ -71,7 +71,7 @@ export async function setup(): Promise { const selected = await p.select({ message: 'Select your AI provider', options: [ - { value: 'anthropic' as const, label: 'Anthropic', hint: 'Claude models - recommended' }, + { value: 'anthropic' as const, label: 'Anthropic', hint: 'Claude models' }, { value: 'openai' as const, label: 'OpenAI', hint: 'GPT models' }, { value: 'xai' as const, label: 'xAI', hint: 'Grok models' }, { value: 'amazon-bedrock' as const, label: 'AWS Bedrock', hint: 'Claude models via AWS' },