用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Arete-Consortium/ai-skills --skill changelog命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | changelog |
| description | Generate Changelog from Commits |
| lifecycle | experimental |
Generate or update CHANGELOG.md from conventional commits.
/changelog # Generate from last tag to HEAD
/changelog v1.0.0..v1.1.0 # Specific range
/changelog --init # Create new CHANGELOG.md
/changelog --unreleased # Add unreleased section
| Prefix | Category | Description |
|---|---|---|
feat: | Added | New features |
fix: | Fixed | Bug fixes |
docs: | Documentation | Doc changes only |
refactor: | Changed | Code refactoring |
perf: | Changed | Performance improvements |
test: | Other | Test additions/changes |
chore: | Other | Maintenance tasks |
breaking: | Breaking | Breaking changes |
security: | Security | Security fixes |
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
## [1.2.0] - 2024-01-15
### Added
- New feature X for better Y (#123)
- Support for Z configuration
### Fixed
- Bug where A caused B (#456)
- Crash on startup with invalid config
### Changed
- Improved performance of data loading
- Refactored authentication module
### Security
- Updated dependency with CVE fix
## [1.1.0] - 2024-01-01
...
# Get commits since last tag
git log $(git describe --tags --abbrev=0)..HEAD --oneline
# Get commits between tags
git log v1.0.0..v1.1.0 --pretty=format:"%s"
# Get latest tag
git describe --tags --abbrev=0
# Get all tags sorted by version
git tag --sort=-v:refname
When /changelog is invoked: