بنقرة واحدة
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