用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/ricardoquesada/regenerator2000 --skill bump-version命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | bump-version |
| description | Automates the process of bumping the version and updating the changelog. |
Use this skill when the user requests to bump the project version (e.g., "bump version to v0.8.0" or "prepare release x.y.z").
Ensure the user provided a valid semantic version (e.g., 0.8.0). If they didn't specify one, determine the correct next version based on recent changes (major/minor/patch) or ask the user for clarification.
Update the version field in the following files:
Cargo.toml:
[package].version.regenerator2000-core and regenerator2000-tui versions in the [dependencies] section.crates/regenerator2000-core/Cargo.toml:
[package].version.crates/regenerator2000-tui/Cargo.toml:
[package].version.regenerator2000-core version in the [dependencies] section.Run the following command to get a list of commits since the last tag:
git log $(git describe --tags --abbrev=0)..HEAD --oneline
Review the commit messages to understand the scope of what features, fixes, and other changes are included in this release.
In CHANGELOG.md:
[Unreleased] section.## [x.y.z] - YYYY-MM-DD using the current date.### Features### Fixes### Changes### Refactor / Internal### DocumentationSummarize the updates made and notify the user that Cargo.toml and CHANGELOG.md have been successfully updated for the new version.
基于 SOC 职业分类