Agent skill
release-stable
Release a stable version (non-beta) - bumps versions in both package.json files, commits, tags, and pushes. Use when cutting a stable release, promoting from beta, or shipping a new version.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/release-stable-carrotwaxr-peek-stash-browser
SKILL.md
Release Stable Version
Use this skill to release a stable (non-beta) version after beta testing is complete.
Version Convention
Stable versions follow semantic versioning: X.Y.Z
- Remove beta suffix when promoting:
3.2.2-beta.8→3.2.2 - Or increment version for new release:
3.2.2→3.2.3or3.3.0
Pre-Flight Checks
- Ensure you're on
mainbranch and it's up to date - Check current version: look at
client/package.jsonversion field - Determine target version (remove beta suffix or increment)
Release Steps
Step 1: Update Versions
Edit BOTH files to the SAME new version:
client/package.json- update"version"fieldserver/package.json- update"version"field
CRITICAL: Both files must have identical version strings.
Step 2: Commit
git add client/package.json server/package.json
git commit -m "chore: bump version to X.Y.Z"
Step 3: Push to Main
git push origin main
Step 4: Create and Push Tag
The tag MUST match the version with a v prefix:
git tag vX.Y.Z
git push origin vX.Y.Z
Example: Version 3.2.2 → Tag v3.2.2
Common Mistakes to Avoid
- Forgetting to update one of the package.json files
- Tag doesn't match version (missing
vprefix or typo) - Pushing tag before pushing commit
- Creating tag on wrong branch
- Leaving beta suffix in version string
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?