From a63b44ac74b4753b5b0c1e854c890aa73938e0a2 Mon Sep 17 00:00:00 2001 From: phoeagon Date: Sun, 21 Jun 2026 14:15:27 -0700 Subject: [PATCH] add installation instructions to picoclaw skills search. --- cmd/picoclaw/internal/skills/helpers.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cmd/picoclaw/internal/skills/helpers.go b/cmd/picoclaw/internal/skills/helpers.go index dad168e7..c1de4b9f 100644 --- a/cmd/picoclaw/internal/skills/helpers.go +++ b/cmd/picoclaw/internal/skills/helpers.go @@ -302,6 +302,11 @@ func skillsSearchCmd(query string) { if result.Version != "" { fmt.Printf(" Version: %s\n", result.Version) } + if result.RegistryName == "github" { + fmt.Printf(" Install: picoclaw skills install %s\n", result.Slug) + } else { + fmt.Printf(" Install: picoclaw skills install --registry=%s %s\n", result.RegistryName, result.Slug) + } fmt.Println() } }