bump-version
Bump the tracker VERSION (semver) so update-check hook notifies existing installs.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Bump the tracker VERSION (semver) so update-check hook notifies existing installs.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Add a comment to an issue.
Document a completed issue in the wiki (functional, technical, decision, solution).
Summarize a ticket's history, description, comments, and status.
Summarize recent activity across issues and commits.
Start tracked work: find/create ticket, set in-progress, track progress in comments.
Create a new issue (ticket, bug, feature request).
| name | bump-version |
| description | Bump the tracker VERSION (semver) so update-check hook notifies existing installs. |
| argument-hint | ["major|minor|patch|<explicit-version>"] |
| allowed-tools | Read, Write, Bash |
Bump the tracker version so existing installs see the update-check notice on their next session.
Only in the tracker source repo (the one that contains template/.project/). In a consumer repo, VERSION is installed state — don't edit it; run init.sh --update instead.
Run after any change to files that ship to consumers:
CLAUDE.md (root)server.ts, ui/.project/skills/* or demo/.project/skills/*.project/hooks/* or template/.project/hooks/*init.shtemplate/**README-only / doc-only / internal-issue changes don't strictly need a bump, but bumping is cheap and makes the update surface properly.
VERSION file at the repo root. If missing, refuse and ask the user to create it.MAJOR.MINOR.PATCH.$ARGUMENTS:
patch (default if no arg): 1.1.0 → 1.1.1minor: 1.1.0 → 1.2.0major: 1.1.0 → 2.0.0X.Y.Z: use as-is (validate semver shape).VERSION (root)..project/VERSION exists and we're in the tracker source repo (i.e. template/.project/ exists), mirror the new version there too, since this repo is both source and self-install./bump-version → patch bump (1.1.0 → 1.1.1)/bump-version minor → 1.1.0 → 1.2.0/bump-version 2.0.0 → set explicitlytemplate/ folder). Fail with a message pointing the user at init.sh --update.