From a6e9722ec16dcfa89b6ca3dadeeab7a9ebf17092 Mon Sep 17 00:00:00 2001 From: tommaso-moro Date: Thu, 16 Apr 2026 10:20:24 +0100 Subject: [PATCH] fix skills names in examples --- pkg/cmd/skills/preview/preview.go | 6 +++--- pkg/cmd/skills/skills.go | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pkg/cmd/skills/preview/preview.go b/pkg/cmd/skills/preview/preview.go index 319288f17..8ffc75dfc 100644 --- a/pkg/cmd/skills/preview/preview.go +++ b/pkg/cmd/skills/preview/preview.go @@ -69,13 +69,13 @@ func NewCmdPreview(f *cmdutil.Factory, runF func(*PreviewOptions) error) *cobra. `), Example: heredoc.Doc(` # Preview a specific skill - $ gh skill preview github/awesome-copilot code-review + $ gh skill preview github/awesome-copilot documentation-writer # Preview a skill at a specific version - $ gh skill preview github/awesome-copilot code-review@v1.2.0 + $ gh skill preview github/awesome-copilot documentation-writer@v1.2.0 # Preview a skill at a specific commit SHA - $ gh skill preview github/awesome-copilot code-review@abc123def456 + $ gh skill preview github/awesome-copilot documentation-writer@abc123def456 # Browse and preview interactively $ gh skill preview github/awesome-copilot diff --git a/pkg/cmd/skills/skills.go b/pkg/cmd/skills/skills.go index 2989c52f8..1dadd3b1f 100644 --- a/pkg/cmd/skills/skills.go +++ b/pkg/cmd/skills/skills.go @@ -29,10 +29,10 @@ func NewCmdSkills(f *cmdutil.Factory) *cobra.Command { $ gh skill search terraform # Install a skill - $ gh skill install github/awesome-copilot code-review + $ gh skill install github/awesome-copilot documentation-writer # Preview a skill before installing - $ gh skill preview github/awesome-copilot code-review + $ gh skill preview github/awesome-copilot documentation-writer # Update all installed skills $ gh skill update --all