
Svbump
- 4 installs
- 5 repo stars
- Updated June 1, 2026
- schpet/toolbox
Helps with ai & agent building tasks.
About
svbump is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.
- svbump
- AI & Agent Building
- AI-coding skill
Svbump by the numbers
- 4 all-time installs (skills.sh)
- Ranked #13,348 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Jul 27, 2026 (Skillselion catalog sync)
npx skills add https://github.com/schpet/toolbox --skill svbumpAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 4 |
|---|---|
| repo stars | ★ 5 |
| Last updated | June 1, 2026 |
| Repository | schpet/toolbox ↗ |
What it does
Helps with ai & agent building tasks.
Files
svbump
A CLI tool for bumping semantic versions in various config file formats.
Supported Formats
- JSON (package.json, deno.json, etc.)
- TOML (Cargo.toml, pyproject.toml, etc.)
- YAML (app.yaml, etc.)
Commands
Read Version
Print the current version to stdout:
svbump read <SELECTOR> <FILE>Examples:
svbump read version package.json
svbump read package.version Cargo.toml
svbump read version deno.jsonWrite Version
Modify the version in a file:
svbump write <LEVEL> <SELECTOR> <FILE>Level options:
major- Bump major version (1.0.0 -> 2.0.0)minor- Bump minor version (1.0.0 -> 1.1.0)patch- Bump patch version (1.0.0 -> 1.0.1)X.Y.Z- Set specific version (must be higher than current)
Examples:
# Bump patch version
svbump write patch version package.json
# Bump minor version in nested field
svbump write minor package.version Cargo.toml
# Set specific version
svbump write 2.5.0 version package.json
# Copy version from one file to another
svbump write "$(svbump read version deno.json)" package.version dist-workspace.tomlPreview Version
Preview what a bump would do without modifying the file:
svbump preview <LEVEL> <SELECTOR> <FILE>Example:
svbump preview minor version package.json
# Outputs: 1.1.0 (without modifying the file)Selector Syntax
Use dot notation to access nested fields:
version- Top-level version fieldpackage.version- Nested under[package]table in TOMLdependencies.foo.version- Deeply nested field
Common Workflows
Release workflow with changelog
# Set version from changelog's latest release
svbump write "$(changelog version latest)" version deno.json
# Sync version to other config files
svbump write "$(svbump read version deno.json)" package.version dist-workspace.tomlForce file type
Use -t or --type to override file type detection:
svbump read version config -t json
svbump write patch version config --type tomlRelated skills
AI & Agent Buildingagents