plosson

Bump — Git skill for Claude Code

Git community

Bump version in package.json, create git tag, commit and push.

How to install Bump

Installs to ~/.claude/commands/plosson-agentio-bump.md

Terminal
mkdir -p ~/.claude/commands && curl -fsSL https://raw.githubusercontent.com/plosson/agentio/HEAD/.claude/commands/bump.md -o ~/.claude/commands/plosson-agentio-bump.md

Restart Claude Code, or start a new session, for it to be picked up.

What Bump does


description: Bump version in package.json, create git tag, commit and push

Version Bump Workflow

Perform a version bump with the following steps:

0. Check for pending changes

If there are uncommited changes, ask if we can commit & push them

1. Update package.json

Update the `version` field in `package.json` to the new version.

Ask the user which type of bump they want:

  • patch: 0.1.7 → 0.1.8 (bug fixes)
  • minor: 0.1.7 → 0.2.0 (new features)
  • major: 0.1.7 → 1

Alternatives in Git

  • Worktree Deliver — Commit all work, push, and create a pull request from the current worktree 23.4k ★
  • Yeet — Stage, commit, push code, and open a GitHub pull request via CLI 14.6k ★
  • Commit Commands — Git commit workflows: commit, push, and PR creation 14k ★

Full documentation available on GitHub

View Source Repository