一键导入
release
Create a version release with git tag. Updates version in both web and app packages. Triggers: "release", "bump version", "create release", "new version"
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create a version release with git tag. Updates version in both web and app packages. Triggers: "release", "bump version", "create release", "new version"
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | release |
| description | Create a version release with git tag. Updates version in both web and app packages. Triggers: "release", "bump version", "create release", "new version" |
This skill creates a version release for PuraToDo, updating version numbers across the monorepo and creating a git tag.
The skill updates version in these files:
apps/web/package.json - Web app versionapps/app/package.json - Tauri app versionapps/app/src-tauri/tauri.conf.json - Tauri config versionapps/app/src-tauri/Cargo.toml - Rust backend versionCheck git status is clean (no uncommitted changes)
git status --porcelain
If not clean, warn user and stop.
Check current git tags to avoid duplicates
git tag -l
Read current version from apps/web/package.json
Ask the user using AskUserQuestion:
Calculate the new version number based on current version and selected type.
Show the user what will change:
Ask for confirmation before proceeding.
Update all version fields:
apps/web/package.json
apps/app/package.json
apps/app/src-tauri/tauri.conf.json
apps/app/src-tauri/Cargo.toml
version = "X.Y.Z" lineversion = "A.B.C" (keep quotes)Stage all changed files
git add apps/web/package.json apps/app/package.json apps/app/src-tauri/tauri.conf.json apps/app/src-tauri/Cargo.toml
Create commit with conventional commit format
git commit -m "chore(release): bump version to A.B.C"
Create annotated git tag
git tag -a vA.B.C -m "Release vA.B.C"
Show summary:
Remind user:
git push && git push --tagsGiven current version X.Y.Z:
Current version: 0.4.0 User selects: minor New version: 0.5.0
Files updated, commit created, tag v0.5.0 created locally.