Notre avis
Automatise la préparation et la publication d'une nouvelle version du package cryptobot-python.
Points forts
- Réduit les erreurs manuelles en automatisant la mise à jour des fichiers de version
- Intègre les tests avant la publication pour garantir la qualité
- Crée automatiquement un tag git et une release GitHub
Limites
- Spécifique à la structure du projet cryptobot-python (pyproject.toml, HISTORY.md)
- Nécessite que l'outil gh (GitHub CLI) soit installé et configuré
- Suppose que la commande make test est disponible et fonctionnelle
Lorsque vous devez publier une nouvelle version du package cryptobot-python, par exemple après avoir accumulé des changements.
Pour des projets qui n'utilisent pas pyproject.toml ou un fichier HISTORY.md, ou si vous préférez un processus de release manuel.
Analyse de sécurité
PrudenceThe skill uses powerful tools like `make` and `gh` for release management. No destructive or exfiltration commands, but `make test` could run arbitrary code without user verification.
- •The skill instructs to run `make test` which executes potentially arbitrary commands from a Makefile. While likely legitimate for the project, it introduces execution risk if the Makefile is compromised.
Exemples
Cut a release for cryptobot-python version 0.4.2Prepare and publish a new release with version 1.0.0 for cryptobot-pythonCreate a release for cryptobot-python version 0.5.0, I will provide the release notes after you start.name: release description: Prepare and publish a new cryptobot-python release. Use when the user asks to cut a release, bump the package version, update HISTORY.md, create a git tag, or create a GitHub release.
Release Skill
Create a new release for the cryptobot-python package.
Usage
/release <version>
Where <version> is the new semantic version (e.g., 0.4.2, 0.5.0, 1.0.0).
Instructions
When the user invokes this skill with a version number, perform the following steps:
-
Validate the version: Ensure the version follows semantic versioning (X.Y.Z format).
-
Update version files:
- Update
versioninpyproject.toml - Update
__version__incryptobot/__init__.py
- Update
-
Ask for release notes: Ask the user what changes should be included in the release notes.
-
Update HISTORY.md: Add a new entry at the top of the History section with:
- Version number and today's date
- The release notes provided by the user
-
Run tests: Execute
make testto ensure all tests pass before proceeding. -
Create commit: Create a commit with message
chore(release): prepare v<version> release -
Create tag: Create an annotated git tag
v<version>pointing to the release commit. -
Create GitHub release: Use
gh release createto create a GitHub release with:- Tag:
v<version> - Title:
v<version> - Release notes from the HISTORY.md entry
- Tag:
-
Report completion: Provide the user with:
- Summary of files changed
- Link to the GitHub release
Architecte Docker Compose
DevOps
Concoit des configurations Docker Compose optimisees.
Rapport de Post-Mortem
DevOps
Rédige des rapports post-mortem d'incidents structurés et blameless.
Créateur de Runbooks
DevOps
Crée des runbooks opérationnels clairs pour les procédures DevOps courantes.