with one click
release
Bump version, tag, and trigger release workflow
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
Bump version, tag, and trigger release workflow
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
Generate a new React component with Mantine styling
Update documentation after implementing features or making changes
Run a quick architecture review via architect-reviewer agent
Generate mobile-specific React components with platform detection and safe areas
Run a quick security audit on recent changes or specific files
Generate a test file for a component, hook, or utility
| name | release |
| description | Bump version, tag, and trigger release workflow |
Creates a new release by bumping versions, creating a tag, and triggering CI.
grep '"version"' package.json
Calculate new version based on bump type.
Update version in both files:
package.jsonsrc-tauri/tauri.conf.jsonCommit the version bump:
git add package.json src-tauri/tauri.conf.json
git commit -m "chore: bump version to X.X.X"
git tag vX.X.X
git push origin main --tags
Once the tag is pushed, .github/workflows/release.yml will:
Current version: 0.1.0-alpha.1
Bump type: patch
New version: 0.1.0-alpha.2
โ Updated package.json
โ Updated src-tauri/tauri.conf.json
โ Committed: chore: bump version to 0.1.0-alpha.2
โ Tagged: v0.1.0-alpha.2
โ Pushed to main with tags
GitHub Actions is now building the release.
Draft will appear at: https://github.com/skeletor-js/skelenote/releases
Next steps:
1. Wait for builds to complete (~15-20 min)
2. Edit the draft release notes
3. Publish when ready
{
"name": "skelenote",
"version": "0.1.0-alpha.1",
...
}
{
"version": "0.1.0-alpha.1",
...
}
For alpha/beta releases, include the suffix:
0.1.0-alpha.1 โ 0.1.0-alpha.20.1.0-beta.3 โ 0.1.0-beta.4When ready for stable:
0.1.0-beta.5 โ 0.1.0/check before releasing