一键导入
changelog
Update CHANGELOG.md with new entries following Keep a Changelog format
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Update CHANGELOG.md with new entries following Keep a Changelog format
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | changelog |
| description | Update CHANGELOG.md with new entries following Keep a Changelog format |
Help update the CHANGELOG.md file with new entries:
Read the current CHANGELOG.md:
cat /Users/bri/dev/Trebuchet/CHANGELOG.md | head -50
Show the last release tag:
cd /Users/bri/dev/Trebuchet && git describe --tags --abbrev=0 2>/dev/null || echo "No tags yet"
Get unreleased commits:
cd /Users/bri/dev/Trebuchet && git log $(git describe --tags --abbrev=0 2>/dev/null || git rev-list --max-parents=0 HEAD)..HEAD --oneline --no-merges
For each significant commit, ask the user to categorize:
Ask the user for user-friendly descriptions of each change
Update CHANGELOG.md with new entries under [Unreleased] section
Ask: "Do you want to prepare this for a release?"
Follow the Keep a Changelog standard:
## [Unreleased]
### Added
- New feature description
### Fixed
- Bug fix description
## [0.4.0] - 2025-01-15
### Added
- Previous features
Run complete CI checks locally (build debug/release, run tests, check warnings)
Run the complete dev server test workflow for the Aura project
Rebuild the trebuchet CLI binary in release configuration
Create a new Trebuchet release tag following semantic versioning (without 'v' prefix)
Run AWS integration tests with LocalStack for local AWS service simulation
Run Trebuchet test suites using Swift Testing framework