원클릭으로
update-version
Bump the aru package version (major, minor, or patch). Default is minor.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Bump the aru package version (major, minor, or patch). Default is minor.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | update-version |
| description | Bump the aru package version (major, minor, or patch). Default is minor. |
| argument-hint | [major|minor|patch] |
| user-invocable | true |
| allowed-tools | Read, Write, Edit |
Bump the aru package version. Accepts an optional argument: major, minor, or patch. Default is minor if no argument is provided.
Parse argument: Read the argument (if any). Accept major, minor, or patch (case-insensitive). If no argument is given, default to minor. If the argument is not one of these three, report an error and stop.
Read current version from both files:
pyproject.toml — look for version = "X.Y.Z" under [project]aru/__init__.py — look for __version__ = "X.Y.Z"Calculate new version based on the bump type:
major: increment MAJOR by 1, reset MINOR and PATCH to 0. Example: 0.5.1 → 1.0.0minor: increment MINOR by 1, reset PATCH to 0. Example: 0.5.1 → 0.6.0patch: increment PATCH by 1. Example: 0.5.1 → 0.5.2Update pyproject.toml: Replace the version value under [project] with the new version.
Update aru/__init__.py: Replace the __version__ assignment with the new version.
Confirm: Report the bump type, old version, and new version to the user (e.g. minor: v0.5.0 → v0.6.0).
MAJOR.MINOR.PATCH