From 57d137b0c5ba99216bba56c1325ae7a1f14f14f8 Mon Sep 17 00:00:00 2001 From: Keith Patrick Date: Thu, 5 Mar 2026 06:16:31 +0000 Subject: [PATCH] fix: linter - split long line to avoid golines issue --- cmd/picoclaw/main.go | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/cmd/picoclaw/main.go b/cmd/picoclaw/main.go index 9a8e8e260..42537c769 100644 --- a/cmd/picoclaw/main.go +++ b/cmd/picoclaw/main.go @@ -127,8 +127,12 @@ func rootCompleteArgs(cmd *cobra.Command, args []string, toComplete string) ([]s return nil, cobra.ShellCompDirectiveNoFileComp } - // Also include built-in commands - builtIn := []string{"onboard", "agent", "auth", "gateway", "status", "cron", "migrate", "skills", "plugins", "version"} + // Also include built-in commands for shell completion + builtIn := []string{ + "onboard", "agent", "auth", "gateway", + "status", "cron", "migrate", "skills", + "plugins", "version", + } // Combine both lists result := append(builtIn, pluginList...)