From f06b73f3ce71846bf4b35ac67ffcbbd0c69c942a Mon Sep 17 00:00:00 2001 From: Rafael Garcia Date: Fri, 16 Jan 2026 15:20:27 -0500 Subject: [PATCH] fix: remove unnecessary OAuth warning when API key auth is present API key authentication is a valid authentication method. The warning suggesting users run 'kernel login' for OAuth was confusing and unnecessary when they already have working API key authentication. Co-Authored-By: Claude Opus 4.5 --- cmd/auth.go | 1 - 1 file changed, 1 deletion(-) diff --git a/cmd/auth.go b/cmd/auth.go index ef51f84..01f3946 100644 --- a/cmd/auth.go +++ b/cmd/auth.go @@ -88,7 +88,6 @@ func runAuth(cmd *cobra.Command, args []string) error { } else { pterm.Info.Printf("API Key: %s\n", strings.Repeat("*", len(apiKey))) } - pterm.Warning.Println("Consider running 'kernel login' to use OAuth authentication") return nil }