Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
athola avatar

Version Updates

  • 90 installs
  • 325 repo stars
  • Updated August 2, 2026
  • athola/claude-night-market

Bump semver and sync version strings across every manifest before you cut a release.

About

Version Updates is an agent skill from the Claude Night Market sanctum stack that standardizes semver bumps, changelog edits, and cross-file version alignment when a solo builder is preparing a release. It is aimed at maintainers of polyglot repos who otherwise miss a nested pyproject.toml or drift between package.json and Cargo.toml. The workflow insists on git-workspace-review beforehand, then walks through context, target discovery via glob search, applying the version, updating docs, and verification. It deliberately excludes pure documentation-only edits and full pull-request packaging, pointing those to sibling skills. For indie hackers shipping CLI tools, SaaS backends, or libraries on a cadence, it turns ad-hoc version edits into a repeatable checklist your coding agent can execute without leaving stale version literals behind.

  • Runs a five-step TodoWrite workflow from context collection through verification
  • Recursively discovers nested package.json, Cargo.toml, and pyproject.toml targets
  • Defaults to patch bumps unless you pass an explicit target version
  • Expects sanctum:git-workspace-review first so repo state is captured
  • Pairs with doc-updates and pr-prep for narrower or broader release tasks

Version Updates by the numbers

  • 90 all-time installs (skills.sh)
  • Ranked #119 of 248 Release Management skills by installs in the Skillselion catalog
  • Security screen: LOW risk (skills.sh audit)
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/athola/claude-night-market --skill version-updates

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs90
repo stars325
Security audit2 / 3 scanners passed
Last updatedAugust 2, 2026
Repositoryathola/claude-night-market

What it does

Bump semver and sync version strings across every manifest before you cut a release.

Files

SKILL.mdMarkdownGitHub ↗

Version Update Workflow

When To Use

Use this skill when preparing a release or bumping the project version. Run Skill(sanctum:git-workspace-review) first to capture current changes.

When NOT To Use

  • Just documentation updates - use doc-updates
  • Full PR preparation - use pr-prep

Required TodoWrite Items

1. version-update:context-collected 2. version-update:target-files 3. version-update:version-set 4. version-update:docs-updated 5. version-update:verification

Step 1: Collect Context (context-collected)

  • Confirm which version to apply (default: bump patch).
  • If the prompt provides an explicit version, note it.
  • validate Skill(sanctum:git-workspace-review) has already captured the repository status.

Step 2: Identify Targets (target-files)

  • Find ALL configuration files that store versions using recursive search:
  • Root level: Cargo.toml, package.json, pyproject.toml
  • Nested directories: Use glob to find */pyproject.toml, */Cargo.toml, */package.json
  • Example: plugins/memory-palace/hooks/pyproject.toml must be included
  • Exclude virtual environments (.venv, node_modules, target/) using grep -v
  • Include changelog and README references that mention the version.
  • Use: find plugins -name "pyproject.toml" -o -name "Cargo.toml" | grep -v ".venv"

Step 3: Update Versions (version-set)

  • Automated approach: Use plugins/sanctum/scripts/update_versions.py <version> to update all version files
  • Supports pyproject.toml, Cargo.toml, package.json
  • Automatically excludes virtual environments
  • Finds nested version files (e.g., plugins/memory-palace/hooks/pyproject.toml)
  • Use --dry-run flag first to preview changes
  • Manual approach: Update each target file with the new version
  • For semantic versions, follow MAJOR.MINOR.PATCH or the specified format
  • If the project supports multiple packages, document each update

Step 4: Update Documentation (docs-updated)

  • Add or update changelog entries with today's date.
  • Refresh README and docs references to mention the new version and any release notes.

Critical Documentation Files with Version References

These files contain version numbers and MUST be checked during version bumps:

FileContent
docs/api-overview.mdPlugin inventory table with all plugin versions
CHANGELOG.mdVersion history and release notes
book/src/reference/capabilities-reference.mdMay reference version-specific features
Plugin READMEsMay mention plugin versions

Scan for Additional Version References

# Find all docs mentioning the OLD version
grep -r "1\.2\.6" docs/ book/ --include="*.md" | grep -v node_modules

# Common patterns to search:
# - "v1.2.6", "1.2.6", "(v1.2.6)"
# - Version tables in markdown
# - "Added in X.Y.Z" annotations

Update Sequence

1. Update config files (pyproject.toml, plugin.json, etc.) - automated 2. Update CHANGELOG.md - add new version section 3. Update docs/api-overview.md - update version table and plugin details 4. Scan for other version references and update as needed

Step 5: Verification (verification)

  • Run relevant builds or tests if version bumps require them (e.g., cargo test, npm test).
  • Show git status -sb and git diff excerpts to confirm the version bumps.

Output Instructions

  • Summarize the files changed and the new version number.
  • Mention follow-up steps, such as publishing or tagging, if applicable.

Exit Criteria

  • [ ] All 5 TodoWrite items (version-update:context-collected

through version-update:verification) are created before any file is modified and marked complete in order

  • [ ] update_versions.py --dry-run <version> run first and its

output reviewed before any version file is written

  • [ ] Version bumped consistently across all found config files

(pyproject.toml, Cargo.toml, package.json, plugin.json) with no target file missing the update

  • [ ] CHANGELOG.md updated with a new version section dated today
  • [ ] git diff output confirms version changes in all identified

target files; a summary of files changed and new version number is reported to the user

Related skills

FAQ

Is Version Updates safe to install?

skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.