From cbd0798a5685e97397721d0ecc6604917946f002 Mon Sep 17 00:00:00 2001 From: Robert Bopko Date: Fri, 3 Apr 2026 19:58:52 +0200 Subject: [PATCH 1/2] fix: avoid duplicate v in CLI help banner --- cmd/picoclaw/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/picoclaw/main.go b/cmd/picoclaw/main.go index 434917c0b..543577e68 100644 --- a/cmd/picoclaw/main.go +++ b/cmd/picoclaw/main.go @@ -29,7 +29,7 @@ import ( ) func NewPicoclawCommand() *cobra.Command { - short := fmt.Sprintf("%s picoclaw - Personal AI Assistant v%s\n\n", internal.Logo, config.GetVersion()) + short := fmt.Sprintf("%s picoclaw - Personal AI Assistant %s\n\n", internal.Logo, config.GetVersion()) cmd := &cobra.Command{ Use: "picoclaw", From e8d92e4a36826d69dc874be0eadd855b06db5a30 Mon Sep 17 00:00:00 2001 From: Robert Bopko Date: Fri, 3 Apr 2026 21:59:57 +0200 Subject: [PATCH 2/2] test: update root help banner expectation --- cmd/picoclaw/main_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/picoclaw/main_test.go b/cmd/picoclaw/main_test.go index cb221dece..3e147cbfe 100644 --- a/cmd/picoclaw/main_test.go +++ b/cmd/picoclaw/main_test.go @@ -17,7 +17,7 @@ func TestNewPicoclawCommand(t *testing.T) { require.NotNil(t, cmd) - short := fmt.Sprintf("%s picoclaw - Personal AI Assistant v%s\n\n", internal.Logo, config.GetVersion()) + short := fmt.Sprintf("%s picoclaw - Personal AI Assistant %s\n\n", internal.Logo, config.GetVersion()) assert.Equal(t, "picoclaw", cmd.Use) assert.Equal(t, short, cmd.Short)