원클릭으로
release
Increment the release version, draft release notes, and prepare a GitHub release.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Increment the release version, draft release notes, and prepare a GitHub release.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | release |
| description | Increment the release version, draft release notes, and prepare a GitHub release. |
| disable-model-invocation | true |
| argument-hint | [new-version] |
| allowed-tools | Bash(git *) Bash(gh *) Read Edit Grep Glob |
Prepare a new release for the Loom project.
Read the current version from both files:
backend/pyproject.toml — the version field under [project]frontend/package.json — the "version" fieldDisplay the current version to the user.
If $ARGUMENTS is provided and is a valid semantic version (e.g. 1.2.0), use it as the new version.
Otherwise, ask the user what the new version should be. Suggest the next patch, minor, and major versions based on the current version (e.g. if current is 1.1.0, suggest 1.1.1, 1.2.0, or 2.0.0).
Wait for the user to confirm before proceeding.
Update the version in all three files:
backend/pyproject.toml: update the version = "..." linefrontend/package.json: update the "version": "..." linebackend/app/main.py: update both version="..." occurrences (FastAPI app and health endpoint)Commit the version bumps:
git add backend/pyproject.toml frontend/package.json backend/app/main.pychore: bump version to <new-version>Identify the previous release tag by running git tag --list 'v*' --sort=-version:refname | head -1.
Generate a changelog from commits since that tag: git log <previous-tag>..HEAD --oneline.
Also run git diff <previous-tag>..HEAD --stat to summarize scope.
Draft release notes in markdown with:
# v<new-version> Release NotesPresent the draft to the user for review before proceeding.
After the user approves the release notes:
git tag v<new-version>git push && git push --tagsgh release create v<new-version> --title "v<new-version>" --notes "<release-notes>"Confirm each destructive step (push, tag, release creation) with the user before executing.