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 <noreply@anthropic.com>
This commit is contained in:
george-keygraph
2026-08-13 15:43:29 -07:00
co-authored by Claude Opus 5
parent 6c39101071
commit cb336456fb
+1 -1
View File
@@ -71,7 +71,7 @@ export async function setup(): Promise<void> {
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' },