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