Our review
Automates the steps to prepare a new version release: version bump, CHANGELOG update, and package build.
Strengths
- Prevents manual errors in release prep
- Integrates CHANGELOG update with current date
- Cleans and rebuilds distribution files
Limitations
- Assumes a Python project with pyproject.toml
- Does not push or deploy
- Does not publish to PyPI
When you need to prepare a new version of a Python package before publishing.
For simple releases without a CHANGELOG or formal versioning scheme.
Security analysis
SafeThe skill uses local project-specific file cleanup (rm -rf dist/ build/ *.egg-info) and build commands (python -m build). No network exfiltration, no system-wide destructive operations, no obfuscation or disabling of safety mechanisms.
No concerns found
Examples
Prepare a release for version 0.4.1. Update version files, update CHANGELOG, build the package, and verify.Run the release preparation for version 0.5.0: update version, move unreleased changelog entries under the new header, and rebuild the distribution.name: prep_release description: バージョン更新、CHANGELOG整備、パッケージビルドなど、リリース前の準備を行う
Prepare Release
This skill automates the steps required to prepare a new version release.
Instructions
-
Update Version:
- Ask the user for the new version number (e.g.
0.4.1). - Update
versioninpyproject.toml. - Update
__version__variable ingwexpy/__init__.pyif it exists.
- Ask the user for the new version number (e.g.
-
Update Changelog:
- Read
CHANGELOG.md. - Create a new header for the new version with the current date.
- Move "Unreleased" changes under this new header.
- Read
-
Build Package:
- Clean old distribution files:
rm -rf dist/ build/ *.egg-info. - Run build command:
python -m build. - Check if correct
.tar.gzand.whlfiles are created indist/.
- Clean old distribution files:
-
Verify:
- (Optional) Run
twine check dist/*to verify metadata validation iftwineis available.
- (Optional) Run
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.