원클릭으로
bump-version
Bump library version in VERSION file and prepare release notes
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Bump library version in VERSION file and prepare release notes
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Add a new screen to an existing feature module with Store, UI, factories, and tests
Add missing test cases, targeting a specific file or all changed files on the branch
Thorough pre-merge audit — dependency graph, correctness, conventions, security, test coverage, and improvement suggestions
Quick review of the current diff for bugs, logic errors, convention violations, and test gaps
Scaffold a new feature module with the appropriate layers and MESA conventions
Scaffold a new Strata interactor with interface, implementation, fake, and test
| name | bump-version |
| description | Bump library version in VERSION file and prepare release notes |
| disable-model-invocation | true |
| argument-hint | <major|minor|patch> |
Bump the MESA library version and prepare for release.
Input: $ARGUMENTS
Determine what to bump:
major → increment major, reset minor and patch to 0minor → increment minor, reset patch to 0patch → increment patchIf no level is provided, ask the user which bump type they want.
Read the VERSION file at the repository root to get the current version string.
Apply semantic versioning and display the version change for confirmation:
Current → New
0.2.0 → 0.3.0
Ask the user to confirm before applying.
Update the VERSION file with the new version string.
Gather commits since the last release tag:
git log $(git describe --tags --abbrev=0)..HEAD --oneline to get commits since the last tagGenerate release notes grouped by category:
Format as markdown suitable for a GitHub release.
Report:
v{VERSION} (e.g., v0.3.0)draft-release.ymlpublish-release.yml will validate the package on release publish