.agents/skills/wox-changelog-update/SKILL.md
Update CHANGELOG.md from the latest released version to HEAD and keep wording, section order, and markdown style consistent with existing entries.
CHANGELOG.md and detect the target section (usually newest version at the top).git tag --sort=-creatordate.last_release_tag..HEAD by default.git log --oneline --no-merges <range>.git show --stat --oneline <sha> to classify user-facing impact.Add: major, clearly new user-visible capabilities, workflows, plugins, or standalone feature areas.Improve: behavioral or UX improvements without new core capability.Fix: user-facing bug fixes/regressions.Add section when the release does not contain a substantial new feature. Prefer Improve for additions that extend an existing feature area rather than creating a new user workflow.Improve unless the commit introduces a large new user-facing feature.## v2.0.1 -).Add, Improve, Fix.Improve entries should say "Improve", "Expand", "Support", or similar, not "Add", unless the entry is intentionally describing a small added option inside an improvement.Add features, explain what the feature is for and why a user would use it. Do not reduce major features to one terse implementation phrase.[Screenshot] bullet instead of splitting them into separate bullets.[`Shell`] or [`Clipboard`].#4339.git tag --sort=-creatordate | head -n 20
sed -n '1,120p' CHANGELOG.md
git log --oneline --no-merges <last_tag>..HEAD
git show --stat --oneline <sha>
git diff -- CHANGELOG.md
CHANGELOG.md directly.