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)