From 54ed1ef97bd0043ad77beda9b09b42c594d6d15f Mon Sep 17 00:00:00 2001 From: sjmiller609 <7516283+sjmiller609@users.noreply.github.com> Date: Thu, 2 Apr 2026 20:06:59 +0000 Subject: [PATCH] Add singular alias for auth connections subcommand Add 'connection' as an alias for the 'connections' subcommand under 'auth', matching the pattern used by all other resource commands in the CLI (browsers/browser, profiles/profile, proxies/proxy, etc.). Co-Authored-By: Claude Opus 4.6 --- cmd/auth_connections.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/cmd/auth_connections.go b/cmd/auth_connections.go index 87dd2af..4142a57 100644 --- a/cmd/auth_connections.go +++ b/cmd/auth_connections.go @@ -711,9 +711,10 @@ func (c AuthConnectionCmd) Follow(ctx context.Context, in AuthConnectionFollowIn // --- Cobra wiring --- var authConnectionsCmd = &cobra.Command{ - Use: "connections", - Short: "Manage auth connections (managed auth)", - Long: "Commands for managing authentication connections that keep profiles logged into domains", + Use: "connections", + Aliases: []string{"connection"}, + Short: "Manage auth connections (managed auth)", + Long: "Commands for managing authentication connections that keep profiles logged into domains", } var authConnectionsCreateCmd = &cobra.Command{