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 ページを確認してインストールできます。
SOC 職業分類に基づく
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)