bump-version — how to use bump-version how to use bump-version, bump-version setup guide, semver update tool, git tag alternative, bump-version vs semver, automate version updates, google apps script versioning, bump-version install, what is bump-version

v0.1.0
GitHub

About this Skill

Perfect for Development Agents needing automated version management in Git-based codebases. bump-version is a collection of Google Apps Script custom functions for tracking crypto portfolios and updating version references using semver.

Features

Analyzes changes since the last version tag using Git commands
Determines the correct semver bump based on commit log and diff
Updates all version references in the codebase
Utilizes Git tag format vMAJOR.MINOR.PATCH
Gathers commit log and diff since the tag using git log and git diff
Classifies changes to determine the correct semver bump

# Core Topics

PaulRBerg PaulRBerg
[0]
[0]
Updated: 3/9/2026

Quality Score

Top 5%
41
Excellent
Based on code quality & docs
Installation
SYS Universal Install (Auto-Detect)
Cursor IDE Windsurf IDE VS Code IDE
> npx killer-skills add PaulRBerg/cryptfolio-scripts/bump-version

Agent Capability Analysis

The bump-version MCP Server by PaulRBerg is an open-source Community integration for Claude and other AI agents, enabling seamless task automation and capability expansion. Optimized for how to use bump-version, bump-version setup guide, semver update tool.

Ideal Agent Persona

Perfect for Development Agents needing automated version management in Git-based codebases.

Core Value

Empowers agents to analyze changes since the last version tag, determine the correct semver bump, and update all version references in the codebase using Git commands and semver protocols.

Capabilities Granted for bump-version MCP Server

Automating version updates in Google Apps Script projects
Analyzing commit logs and diffs since the last version tag
Updating version references in codebases with semantic versioning

! Prerequisites & Limits

  • Requires Git installation and configuration
  • Limited to semantic versioning format (MAJOR.MINOR.PATCH)
Project
SKILL.md
2.6 KB
.cursorrules
1.2 KB
package.json
240 B
Ready
UTF-8

# Tags

[No tags]
SKILL.md
Readonly

Bump Version

Analyze changes since the last version tag, determine the correct semver bump, and update all version references in the codebase.

Workflow

Step 1: Identify the Latest Version Tag

bash
1git tag --sort=-v:refname | head -1

The tag format is vMAJOR.MINOR.PATCH (e.g. v2.1.1).

Step 2: Analyze Changes Since the Last Tag

Gather the commit log and diff since the tag:

bash
1git log <tag>..HEAD --oneline 2git diff <tag>..HEAD --stat

Step 3: Classify the Semver Bump

Apply Semantic Versioning rules to the changes:

BumpCriteria
patchBug fixes, dependency bumps, formatting, docs, refactors with no behavioral change
minorNew features, new functions, new chain/token support, non-breaking additions
majorBreaking changes: renamed/removed public functions, changed function signatures, schema moves

Context-specific guidance for this codebase:

  • Adding a new custom function (e.g. GET_BALANCE_V2) → minor
  • Adding a new chain or token to data.gsminor
  • Renaming or removing an existing custom function → major
  • Changing the parameters of an existing custom function → major
  • Fixing a bug in price fetching or balance calculation → patch
  • Updating RPC URLs, API endpoints, or constants → patch
  • Reformatting, linting, dependency bumps → patch

Present the analysis and proposed version to the user for confirmation before making changes.

Step 4: Update Version References

After the user confirms the bump, update exactly two locations:

1. package.jsonversion field

Update the "version" field to the new semver string (without the v prefix):

json
1"version": "X.Y.Z"

2. src/cryptfolio.gsVERSION constant

The VERSION constant near line 13 is a monotonically incrementing integer string used by Google Apps Script for library deployment. Increment it by 1 from the current value:

js
1const VERSION = "N"; // increment N by 1

This is not the semver version. It is a separate deployment counter that always increments by exactly 1 regardless of the semver bump type.

Step 5: Summary

After updating, display a summary:

Version bump: vOLD -> vNEW
  package.json:       "OLD" -> "NEW"
  src/cryptfolio.gs:  VERSION "N" -> "N+1"

Do not create a git tag or commit. The user handles that separately.

Related Skills

Looking for an alternative to bump-version or building a Community AI Agent? Explore these related open-source MCP Servers.

View All

widget-generator

Logo of f
f

widget-generator is an open-source AI agent skill for creating widget plugins that are injected into prompt feeds on prompts.chat. It supports two rendering modes: standard prompt widgets using default PromptCard styling and custom render widgets built as full React components.

149.6k
0
Design

testing

Logo of lobehub
lobehub

Testing is a process for verifying AI agent functionality using commands like bunx vitest run and optimizing workflows with targeted test runs.

73.3k
0
Communication

chat-sdk

Logo of lobehub
lobehub

chat-sdk is a unified TypeScript SDK for building chat bots across multiple platforms, providing a single interface for deploying bot logic.

73.0k
0
Communication

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
Communication