在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用update-changelog
星标5
分支0
更新时间2026年4月29日 21:49
Read this skill before updating changelogs
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Read this skill before updating changelogs
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | update-changelog |
| description | Read this skill before updating changelogs |
CHANGELOG.md in the project root.
Use these sections under ## [Unreleased]:
[Unreleased] section to see which subsections already exist## [Unreleased] section### Fixed), do not create duplicates## 0.0.7)* Fixed foo bar ([#123](https://github.com/<owner>/suitecase/issues/123))
* Added feature X ([#456](https://github.com/<owner>/suitecase/pull/456) by [@username](https://github.com/username))
Update CHANGELOG: Ensure all changes since last release are documented in the [Unreleased] section of CHANGELOG.md
Run release script (if available):
cargo release patch # Fixes and additions
cargo release minor # API breaking changes
The release process handles: version bump in Cargo.toml, CHANGELOG finalization, commit, git tag, and publish to crates.io.
fixes #<number> or closes #<number> in the commit message when there is a related issue or PRgit add -A or git add .git add <specific-file-paths> listing only files you modifiedgit status and verify you are only staging YOUR filesThese commands can cause problems:
git reset --hard - destroys uncommitted changesgit checkout . - destroys uncommitted changesgit clean -fd - deletes untracked filesgit stash - stashes ALL changesgit add -A / git add . - stages unintended changesgit commit --no-verify - bypasses required checks# 1. Check status first
git status
# 2. Add ONLY your specific files
git add CHANGELOG.md
git add src/suite/mod.rs
# 3. Commit
git commit -m "fix: description"
# 4. Push
git push