release-bump
Automates release versioning and changelog management.
Install
mkdir -p .claude/skills/release-bump-himatts && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/12867" && unzip -o skill.zip -d .claude/skills/release-bump-himatts && rm skill.zipInstalls to .claude/skills/release-bump-himatts
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Prepare versioned release updates for Lime Pipeline. Use when user-visible behavior changes require bumping `bl_info["version"]`, updating `CHANGELOG.md`, and producing release-ready QA notes.Key capabilities
- →Choose bump level based on user-visible impact
- →Update `bl_info["version"]`
- →Add dated entry in `CHANGELOG.md`
- →Run QA baseline tests
- →Run `registration-audit` if ops/ui changed
- →Build artifact and record SHA256 hash
How it works
This skill prepares versioned release updates by choosing a bump level, updating version information, adding changelog entries, running QA tests, and building a release artifact with its hash.
Inputs & outputs
When to use release-bump
- →Bump project version
- →Update changelog
- →Run QA suite
- →Build release artifact
About this skill
Goal
Create a consistent release increment with traceable version notes and build artifacts.
Steps
- Choose bump level (patch/minor/major) based on user-visible impact.
- Update
bl_info["version"]inlime_pipeline/__init__.py. - Add dated entry in
CHANGELOG.mdsummarizing user-facing changes. - Run QA baseline:
python -m unittest discover tests -vpoetry run mkdocs build
- If ops/ui changed, run
registration-audit. - Build artifact with
package-addonand record SHA256 hash.
Outputs
- Updated version tuple.
- Changelog entry for the release.
- QA command summary and artifact hash.
When not to use it
- →When user-visible behavior changes are not present
- →When not preparing versioned release updates for Lime Pipeline
- →When not needing QA notes
Limitations
- →Limited to Lime Pipeline releases
- →Requires `bl_info["version"]` in `lime_pipeline/__init__.py`
- →Requires `CHANGELOG.md` for entries
How it compares
This workflow provides a consistent and traceable release increment process for Lime Pipeline, including specific file updates and QA steps, which a manual release might not standardize.
Compared to similar skills
release-bump side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| release-bump (this skill) | 0 | 5mo | No flags | Intermediate |
| code-change-verification | 4 | 4mo | Review | Beginner |
| discovering-make-commands | 3 | 5mo | No flags | Beginner |
| django-verification | 5 | 4mo | Review | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
You might also like
code-change-verification
openai
Run the mandatory verification stack when changes affect runtime code, tests, or build/test behavior in the OpenAI Agents Python repository.
discovering-make-commands
streamlit
Lists available make commands for Streamlit development. Use for build, test, lint, or format tasks.
django-verification
affaan-m
Verification loop for Django projects: migrations, linting, tests with coverage, security scans, and deployment readiness checks before release or PR.
dev
atopile
LLM-focused workflow for working in this repo: compile Zig, run the orchestrated test runner, consume test-report.json/html artifacts, and discover/debug ConfigFlags.
instantly-ci-integration
jeremylongshore
Configure Instantly CI/CD integration with GitHub Actions and testing. Use when setting up automated testing, configuring CI pipelines, or integrating Instantly tests into your build process. Trigger with phrases like "instantly CI", "instantly GitHub Actions", "instantly automated tests", "CI instantly".
publish-pypi
wandb
Build and publish the Weave Python SDK to PyPI. Use when releasing a new version.