From 1b2fb18d280c5da803a1fa62af80edbe53bea58b Mon Sep 17 00:00:00 2001 From: Mason Williams Date: Wed, 11 Feb 2026 14:31:39 -0500 Subject: [PATCH] docs(auth): Update auth command descriptions --- cmd/auth.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/cmd/auth.go b/cmd/auth.go index 01f39460..a9a730b2 100644 --- a/cmd/auth.go +++ b/cmd/auth.go @@ -24,9 +24,11 @@ type JWTClaims struct { var authCmd = &cobra.Command{ Use: "auth", - Short: "Show current authentication status", + Short: "Show authentication status and manage auth connections", Long: `Display information about the current authentication state, including logged-in user details and token expiry. -Use --log-level debug to show additional details like user ID and storage method.`, +Use --log-level debug to show additional details like user ID and storage method. + +Use "kernel auth connections" to manage managed auth connections for automated login flows.`, RunE: runAuth, }