with one click
release
Walk through shipping a new release of Terrarium
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Walk through shipping a new release of Terrarium
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| name | release |
| description | Walk through shipping a new release of Terrarium |
Walk me through shipping a new release of Terrarium. For each step, wait for my confirmation before proceeding to the next.
Check for uncommitted changes — run git status and git diff. If there are changes, ask if I want to commit them first.
Determine the version — read the current version from package.json, src-tauri/tauri.conf.json, and src-tauri/Cargo.toml. Show me the current version and ask what the new version should be (patch, minor, or major bump).
Bump the version — update the version in all three files to match. Show me the diff.
Commit the version bump — stage and commit with message Bump version to vX.Y.Z.
Push to master — run git push origin master.
Tag the release — run git tag vX.Y.Z and git push origin vX.Y.Z. This triggers the publish workflow which builds, signs, notarizes, and creates the GitHub release automatically.
Monitor the build — show me the command to watch the workflow: gh run watch. If it fails, help me debug.
Verify the release — run gh release view vX.Y.Z to confirm the assets were uploaded (should include .dmg, .app.tar.gz, .sig, and latest.json).