From 278820360f7239dfa13f4d08b84e0a47f296b5d4 Mon Sep 17 00:00:00 2001 From: Ben Rogerson Date: Sun, 10 May 2026 00:38:30 +0930 Subject: [PATCH 1/2] fix: update help text to reflect 'commands sync' as primary command The help text still advertised 'skills sync' as a current command despite cli.ts having renamed it to 'commands sync' with a deprecation notice. Updated help to list 'commands sync' as the primary command and explicitly note that 'skills sync' is a deprecated alias. --- packages/core/src/cli/help.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/core/src/cli/help.ts b/packages/core/src/cli/help.ts index bf91a19..618279f 100644 --- a/packages/core/src/cli/help.ts +++ b/packages/core/src/cli/help.ts @@ -19,7 +19,8 @@ Commands: workflow [args] Run a workflow (alias: 'run') validate [|--all] [--check-files] [--profile

] [--key v] Static-check workflow definitions metrics [today|week|...] Show metrics summary - skills sync Regenerate .claude/commands/ from workflows + commands sync Regenerate .claude/commands/ from workflows + skills sync (deprecated alias for 'commands sync') worktree prune Remove orphaned 'generata/wt-*' worktrees and branches help [topic] Show help (topics: agents, workflows, env, templates, bins) From a0cf8ce5023e8453c1754b41525bc299973c436f Mon Sep 17 00:00:00 2001 From: Ben Rogerson Date: Sun, 10 May 2026 00:38:30 +0930 Subject: [PATCH 2/2] chore: add changeset --- .changeset/help-still-advertises-skills-sync.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/help-still-advertises-skills-sync.md diff --git a/.changeset/help-still-advertises-skills-sync.md b/.changeset/help-still-advertises-skills-sync.md new file mode 100644 index 0000000..ae3df75 --- /dev/null +++ b/.changeset/help-still-advertises-skills-sync.md @@ -0,0 +1,5 @@ +--- +"@generata/core": patch +--- + +fix: update help text to reflect 'commands sync' as primary command