来源信息
- 仓库
- stillwater-sc/mpadao-template
- 最近来源活动
- 2026年3月8日 01:59
- 检测到的 SKILL.md 语言
- 英语
- 星标
- 1
- 分支
- 2
安装方式
默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。
检查来源文件
决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。
正在显示 SKILL.md
SKILL.md
来源说明 · 只读预览- name
- bump-version
- description
- Bump the MPADAO semantic version (major, minor, or patch)
- argument-hint
- <major|minor|patch>
- disable-model-invocation
- true
- allowed-tools
- Read, Edit, Bash
Bump the project version in CMakeLists.txt.
1. Read the root CMakeLists.txt to find current MPADAO_MAJOR, MPADAO_MINOR, MPADAO_PATCH
2. Based on $ARGUMENTS:
- "major": increment major, reset minor and patch to 0
- "minor": increment minor, reset patch to 0
- "patch": increment patch
3. Edit CMakeLists.txt with the new values
4. Rebuild to verify version propagates: cd build && cmake .. && make semver && ./bin/semver
5. Report the old and new version numbers
在 GitHub 查看