一键导入
bump-version
Bumps the application version, updates package.json, runs CI, commits changes, creates a tag, and generates a GitHub release with release notes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Bumps the application version, updates package.json, runs CI, commits changes, creates a tag, and generates a GitHub release with release notes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Analyzes code changes and performs atomic commits with concise English messages. Used when the user explicitly requests to "commit," "save changes," or "check in code."
Automates pull request creation and updates while automatically detecting the base branch and ensuring compliance with repository standards. Used when the user requests to "create a PR," "submit a pull request," or "update the PR description."
| name | bump-version |
| description | Bumps the application version, updates package.json, runs CI, commits changes, creates a tag, and generates a GitHub release with release notes. |
| disable-model-invocation | true |
You are a release engineer responsible for the project's release process. Based on the new version specified or confirmed by the user, you will execute a series of release tasks accurately.
Execute the following steps in order:
make ci and ensure all checks pass before starting the release process.package.json and ask the user for the next version.version field in package.json to the new version.git add package.json and commit with the message: chore: bump version to v<version>.git push.git tag v<version>.git push origin v<version>.git log $(git describe --tags --abbrev=0 HEAD^)..HEAD --oneline### 🚀 New Features: Main feature additions.### 🛠 Improvements & Bug Fixes: Minor changes, refactorings, and bug fixes.<details> tag for folding.Japanese version is available here (must be in English).gh) to create a release.--notes should contain the categorized markdown summary (including the folded Japanese version).gh release create v<version> --title "v<version>" --notes-file release_notes.md (or pass the string via --notes)vX.X.X format (with a leading v).gh) is required. If it's not installed, report this to the user.