From c703294fbe8022e256b0b3999901efc4d785621a Mon Sep 17 00:00:00 2001 From: Sam Morrow Date: Mon, 20 Apr 2026 12:34:59 +0200 Subject: [PATCH] fix(skills): use canonical 'gh skill' not 'gh skills' alias Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- pkg/cmd/skills/publish/publish.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/cmd/skills/publish/publish.go b/pkg/cmd/skills/publish/publish.go index 73343f171..d7aeddd65 100644 --- a/pkg/cmd/skills/publish/publish.go +++ b/pkg/cmd/skills/publish/publish.go @@ -140,7 +140,7 @@ func NewCmdPublish(f *cmdutil.Factory, runF func(*PublishOptions) error) *cobra. $ gh skill publish --dry-run # Strip install metadata without publishing - $ gh skills publish --fix + $ gh skill publish --fix `), Args: cobra.MaximumNArgs(1), RunE: func(cmd *cobra.Command, args []string) error { @@ -413,7 +413,7 @@ func publishRun(opts *PublishOptions) error { if opts.Fix { if fixes > 0 { - fmt.Fprintf(opts.IO.ErrOut, "\nFixed %d file(s). Review and commit the changes, then run %s to publish.\n", fixes, "gh skills publish") + fmt.Fprintf(opts.IO.ErrOut, "\nFixed %d file(s). Review and commit the changes, then run %s to publish.\n", fixes, "gh skill publish") } else { fmt.Fprintf(opts.IO.ErrOut, "\nNo issues to fix.\n") }