changelog
星标13
分支1
更新时间2026年4月9日 01:28
Generate a changelog entry from recent commits since a given ref or tag
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Generate a changelog entry from recent commits since a given ref or tag
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Debug a failing test by loading full context — test file, source file, error output
Show all public exports from the vlist package to catch accidental API changes
Find untested code paths and report coverage gaps in the vlist project
Run the full pre-release checklist — version, changelog, tests, types, build, size
| name | changelog |
| description | Generate a changelog entry from recent commits since a given ref or tag |
| argument-hint | ["since-ref"] |
| allowed-tools | Bash(git log *) Bash(git tag *) Bash(git describe *) Read |
Generate a changelog entry for the vlist project based on recent commits.
git describe --tags --abbrev=0 2>/dev/null || echo "no tags"git log $(git describe --tags --abbrev=0 2>/dev/null || echo "HEAD~20")..HEAD --oneline --no-merges 2>/dev/null || git log --oneline -20$ARGUMENTS is provided, use it as the base ref. Otherwise use the latest tag (shown above).feat commitsrefactor, perf commitsfix commitstest commitsdocs, chore, style commits## [version] — YYYY-MM-DD
### Added
- Description (scope)
### Changed
- Description (scope)
### Fixed
- Description (scope)