在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用release
星标5
分支0
更新时间2026年2月20日 10:01
Bump version and generate summary of changes
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Bump version and generate summary of changes
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | release |
| description | Bump version and generate summary of changes |
| disable-model-invocation | true |
| argument-hint | <major|minor|patch> |
| allowed-tools | Read, Edit, Grep, Glob, Bash(git log *) |
Bump the application version and generate a summary of changes since the last version bump.
major, minor, or patch (default: patch)| File | What Changes |
|---|---|
src/js/config/version.js | VERSION constant bumped |
Read the current version from src/js/config/version.js (e.g., "0.3.0").
Apply the bump:
patch: 0.3.0 → 0.3.1minor: 0.3.0 → 0.4.0major: 0.3.0 → 1.0.0Edit src/js/config/version.js:
export const VERSION = "X.Y.Z";
Gather commits since the last version bump:
git log --oneline $(git log --all --oneline --grep="Bump version" -1 --format="%H")..HEAD
If no previous "Bump version" commit exists, use the last 20 commits:
git log --oneline -20
Analyze the commits and categorize:
Display:
index.html .version-chip) is populated at runtime from version.js — no need to edit HTML