一键导入
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.