version-updates

Solid

Bump versions, update changelogs, and coordinate version changes across files for releases

AI & Automation 294 stars 26 forks Updated today MIT

Install

View on GitHub

Quality Score: 95/100

Stars 20%
82
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# 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...

Details

Author
athola
Repository
athola/claude-night-market
Created
6 months ago
Last Updated
today
Language
Python
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

doc-updates

Update documentation after code changes with quality gates, slop detection, consolidation, and accuracy verification.

294 Updated today
athola
Data & Documents Listed

semantic-versioning

Manages project versioning following Semantic Versioning (SemVer) principles. Calculates increments based on changes and synchronizes version across documentation and metadata. Use when the user asks to "bump the version", "prepare a release", or when the `changelog` skill calls for a release.

1 Updated 1 weeks ago
tuliosousapro
Data & Documents Listed

version-bumper

Automates version upgrades and changelog synchronization across 7+ files (Code, READMEs, Docs). Use when a plugin is ready for release to ensure version consistency.

228 Updated 1 weeks ago
Fu-Jie
AI & Automation Listed

release

Automated release management - version updates, changelog generation, git tagging, and GitHub release creation

2 Updated yesterday
Edmonds-Commerce-Limited
Code & Development Solid

docs-updater

Provides automated documentation updates by analyzing git changes between the current branch and the last release tag. Performs git diff analysis to identify modifications, then updates README.md, CHANGELOG.md following Keep a Changelog standard, and discovers documentation folders for contextual updates. Use when preparing a release, maintaining documentation sync, or before creating a pull request. Triggers on "update docs", "update changelog", "sync documentation", "update readme", "prepare release documentation".

261 Updated 1 weeks ago
giuseppe-trisciuoglio