feat(cli)!: remove sync command#2669
Merged
Merged
Conversation
Contributor
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This was referenced Jun 16, 2026
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
"## Summary\n\n- remove the public
clawhub synccommand and its broad local-root scanning implementation\n- makeclawhub skill publish <path>skip unchanged content, default new skills to1.0.0, and default changed skills to the next patch when--versionis omitted\n- restore the reusable skill-publish workflow as a thin catalog enumerator that invokes ordinaryskill publishonce per skill folder\n- prepare the ClawHub CLI0.22.0release\n\n## Proof\n\nBuilt CLI against a local registry fixture:\n\ntext\n$ clawhub skill publish new-skill --dry-run --json\n{\n \"status\": \"would-publish\",\n \"slug\": \"new-skill\",\n \"version\": \"1.0.0\",\n \"latestVersion\": null\n}\n\n$ clawhub skill publish changed-skill --dry-run --json\n{\n \"status\": \"would-publish\",\n \"slug\": \"changed-skill\",\n \"version\": \"2.0.1\",\n \"latestVersion\": \"2.0.0\"\n}\n\n$ clawhub sync\nerror: unknown command 'sync'\nexit=1\n\n$ clawhub skill publish --help | grep -E -- \"--version|--dry-run|--json|--bump\"\n --version <version> Explicit version (defaults to 1.0.0 or next patch)\n --dry-run Preview without publishing\n --json Output JSON\n\n\nReusable workflow runner against a two-skill catalog fixture:\n\njson\n{\n \"summary\": {\n \"wouldPublish\": 1,\n \"published\": 0,\n \"alreadySynced\": 1,\n \"skipped\": 0,\n \"failed\": 0\n },\n \"wouldPublish\": [{ \"slug\": \"changed\", \"version\": \"2.0.1\" }],\n \"alreadySynced\": [{ \"slug\": \"unchanged\", \"version\": \"1.0.0\" }]\n}\n\n\n## Tests\n\n-bun run ci:static\n-bun run ci:unit\n-bun run ci:packages\n-bun run ci:types-build\n-bun run ci:e2e-http\n-actionlint .github/workflows/skill-publish.yml\n-node scripts/clawhub-cli-npm-release-check.mjs --tag v0.22.0\n-.agents/skills/autoreview/scripts/autoreview --mode branch(clean after fixing resolver-404 finding).agents/skills/autoreview/scripts/autoreview --mode local(compatibility finding consciously rejected per explicit decision to remove thebumpinput)\n"