Notre avis
Automatise les étapes de préparation d'une nouvelle version : mise à jour du numéro de version, du journal des modifications et construction du paquet.
Points forts
- Garantit la cohérence entre les fichiers de version (pyproject.toml, __init__.py)
- Structure le CHANGELOG avec les nouvelles sections datées
- Nettoie et reconstruit les fichiers de distribution de manière fiable
Limites
- Conçu spécifiquement pour les projets Python utilisant pyproject.toml
- Ne publie pas la version (reste en préparation)
- Nécessite que l'utilisateur fournisse le numéro de version
Quand vous devez préparer une nouvelle version d'un paquet Python avant publication.
Si vous cherchez un outil de publication complet (utilisez alors un workflow CI/CD).
Analyse de sécurité
SûrThe skill only runs standard Python build commands and a targeted rm for cleanup. No exfiltration, no disabling of safety, no obfuscation.
Aucun point d'attention détecté
Exemples
Prepare a release for version 0.4.1.Run the release preparation steps: update version to 1.0.0, update changelog, and build the package.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
Expert Next.js App Router
Developpement
Un skill qui transforme Claude en expert Next.js App Router.
Générateur de README
Developpement
Crée des README.md professionnels et complets pour vos projets.
Rédacteur de Documentation API
Developpement
Génère de la documentation API complète au format OpenAPI/Swagger.