diff --git a/plugin/skills/version-bump/SKILL.md b/plugin/skills/version-bump/SKILL.md index 27e1654e..3300f9cb 100644 --- a/plugin/skills/version-bump/SKILL.md +++ b/plugin/skills/version-bump/SKILL.md @@ -20,13 +20,14 @@ description: Automated semantic versioning and release workflow for Claude Code - `.claude-plugin/plugin.json` — top-level Claude-plugin manifest - `plugin/.claude-plugin/plugin.json` — bundled Claude-plugin manifest - `.codex-plugin/plugin.json` — Codex-plugin manifest + - `openclaw/openclaw.plugin.json` — OpenClaw plugin manifest - Verify coverage before editing: `git grep -l "\"version\": \"\""` should list all six. If a new manifest has been added since this doc was last updated, update this list. + Verify coverage before editing: `git grep -l "\"version\": \"\""` should list all seven. If a new manifest has been added since this doc was last updated, update this list. ## Workflow 1. **Update**: Increment the version string in every path above. Do NOT touch `CHANGELOG.md` — it's regenerated. -2. **Verify**: `git grep -n "\"version\": \"\""` — confirm all six files match. `git grep -n "\"version\": \"\""` — should return zero hits. +2. **Verify**: `git grep -n "\"version\": \"\""` — confirm all seven files match. `git grep -n "\"version\": \"\""` — should return zero hits. 3. **Build**: `npm run build` to regenerate artifacts. 4. **Commit**: `git add -A && git commit -m "chore: bump version to X.Y.Z"`. 5. **Tag**: `git tag -a vX.Y.Z -m "Version X.Y.Z"`. @@ -52,7 +53,7 @@ description: Automated semantic versioning and release workflow for Claude Code ## Checklist -- [ ] All six config files have matching versions +- [ ] All seven config files have matching versions - [ ] `git grep` for old version returns zero hits - [ ] `npm run build` succeeded - [ ] Git tag created and pushed