Create a new release by bumping the version, committing changes, and pushing a git tag. Use this when the user wants to release a new version (for example: "release 1.0.1", "release patch", "make a release", "bump version and release", "create version 2.0.0").
Create a new release for Eyes on Claude Code.
The user may specify a version in one of these formats:
1.0.1, 2.0.0patch, minor, majorIf not specified, ask the user which version type they want.
If explicit version provided, use it directly.
If semver bump keyword provided:
# Get current version from package.json
node -p "require('./package.json').version"
Then calculate:
patch: 1.0.0 → 1.0.1minor: 1.0.0 → 1.1.0major: 1.0.0 → 2.0.0Update version in both files:
package.json:
{
"version": "NEW_VERSION"
}
src-tauri/tauri.conf.json:
{
"version": "NEW_VERSION"
}
git add package.json src-tauri/tauri.conf.json
git commit -m "Bump version to NEW_VERSION"
git tag vNEW_VERSION
git push origin main vNEW_VERSION
Output the following:
https://github.com/joe-re/claude-code-session-manager/actionsSearch for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer