new-changelog
GitHub根据桌面版版本号规范,在指定目录创建包含日期和摘要的发布说明Markdown文件。
Trigger Scenarios
Install
npx skills add fastrepl/anarlog --skill new-changelog -g -y
SKILL.md
Frontmatter
{
"name": "new-changelog",
"metadata": {
"internal": true
},
"description": "Create the next desktop changelog entry when asked to add a changelog file or prepare the next release note under `packages\/changelog\/content`. Use this when the task is specifically about determining the next version and creating the markdown entry."
}
Determine the next desktop version by inspecting .github/workflows/desktop_cd.yaml and running:
doxxer --config doxxer.desktop.toml current
doxxer --config doxxer.desktop.toml next patch
Create the new markdown file in packages/changelog/content for that version.
Each changelog file must start with frontmatter that includes both date and
summary:
---
date: "YYYY-MM-DD"
summary: "One concise, user-facing sentence for the changelog index preview."
---
Keep summary plain text. Do not use markdown or custom tags in it. The web
changelog index renders this field directly, so it should describe the release
at a glance without leaking implementation details.
Version History
- 2d4c6b1 Current 2026-08-20 17:12


