一键导入
release-helper
Automates version bumping and documentation synchronization for DP-EVA releases. Invoke when preparing a new release or bumping versions.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Automates version bumping and documentation synchronization for DP-EVA releases. Invoke when preparing a new release or bumping versions.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Establishes a robust documentation governance system. Invoke when setting up docs, auditing structure, enforcing standards, or integrating doc automation.
Executes project-specific static analysis to detect hardcoded paths, magic numbers, missing docstrings, and commented code. Invoke when asked to code review for code quality.
| name | release-helper |
| description | Automates version bumping and documentation synchronization for DP-EVA releases. Invoke when preparing a new release or bumping versions. |
This skill automates the release process by:
src/dpeva/__init__.py and README.md metadata.docs/guides/developer-guide.md.First, analyze the changes to be included in this release:
git log --oneline $(git describe --tags --abbrev=0)..HEADRun the release helper script to bump the version and update files.
To perform a Patch Release (e.g., 0.4.5 -> 0.4.6):
python scripts/release_helper.py patch
To perform a Minor Release (e.g., 0.4.5 -> 0.5.0):
python scripts/release_helper.py minor
CRITICAL: You must manually update docs/guides/developer-guide.md after running the script. The script only updates version metadata in src/dpeva/__init__.py and README.md.
Action:
docs/guides/developer-guide.md.## 6. 版本修订记录 -> ### 6.2 版本历史 -> #### Current Era (v0.7.x) 章节。* **vX.Y.Z** (YYYY-MM-DD):
* **[类型]** 变更描述...
* **[类型]** 变更描述...
src/dpeva/__init__.py and README.md have the correct new version.docs/guides/developer-guide.md contains the new version entry and is correctly formatted.git commit -am "chore: release vX.Y.Z"git tag vX.Y.Z