원클릭으로
release
Create a new Trebuchet release tag following semantic versioning (without 'v' prefix)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create a new Trebuchet release tag following semantic versioning (without 'v' prefix)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | release |
| description | Create a new Trebuchet release tag following semantic versioning (without 'v' prefix) |
Create a new release for Trebuchet:
Check for uncommitted changes:
cd /Users/bri/dev/Trebuchet && git status --short
If there are uncommitted changes, ask the user if they want to proceed.
Show current version:
cd /Users/bri/dev/Trebuchet && git describe --tags --abbrev=0 2>/dev/null || echo "No tags yet"
Show recent commits:
cd /Users/bri/dev/Trebuchet && git log --oneline -10
Ask the user: "What version number for this release?"
0.4.0)0.4.0 NOT v0.4.0Validate the version format matches \d+\.\d+\.\d+
Ask the user: "What's the release message?"
Create the annotated tag:
cd /Users/bri/dev/Trebuchet && git tag -a VERSION -m "MESSAGE"
Confirm with user before pushing
Push the tag:
cd /Users/bri/dev/Trebuchet && git push origin VERSION
Update CHANGELOG.md with new entries following Keep a Changelog format
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
Run AWS integration tests with LocalStack for local AWS service simulation
Run Trebuchet test suites using Swift Testing framework