Notre avis
Ce skill automatise la création d'une nouvelle version pour une application, incluant la mise à jour du numéro de version, du fichier CHANGELOG et la vérification des migrations de base de données.
Points forts
- Guide structuré avec des étapes claires
- Vérification intégrée des migrations de base de données
- Respect du versionnage sémantique
- Interaction utilisateur pour personnaliser le contenu
Limites
- Dépend de la structure spécifique du projet (package.json, CHANGELOG.md)
- Nécessite une confirmation manuelle pour le commit et le tag git
- Ciblé sur une application particulière
Lors de la préparation d'une nouvelle version de l'application, pour synchroniser le numéro de version, les notes de version et les migrations.
Pour des projets n'utilisant pas le versionnage sémantique ou une structure de fichiers différente de celle attendue.
Analyse de sécurité
PrudenceThe skill instructs the agent to run a shell command (`bun run db:generate`) that relies on a script defined in the project's package.json. This could execute arbitrary code if the script is compromised or unintended, and the skill does not validate or restrict this behavior.
- •Runs `bun run db:generate` which executes a script from package.json, potentially allowing arbitrary code execution without prior inspection.
Exemples
Create a new patch release for the notes app.Bump the version to a minor release and update the changelog.Prepare a major release with breaking changes.name: release description: Create a new release version. Use when asked to create a release, prepare a release, bump version, or update the changelog.
Release Skill
This skill guides the process of creating a new release for the notes application.
Instructions
When the user asks to create a release, follow these steps:
Step 1: Determine Release Type
Use the AskUserQuestion tool to ask the user what type of release this is:
Options:
- Patch (x.x.X) - Bug fixes and minor changes that don't add features
- Minor (x.X.0) - New features that are backwards compatible
- Major (X.0.0) - Breaking changes or major new features
Step 2: Calculate New Version
Read package.json to get the current version. Parse the semantic version (MAJOR.MINOR.PATCH) and increment the appropriate number:
- Patch: increment PATCH, keep MAJOR and MINOR
- Minor: increment MINOR, reset PATCH to 0, keep MAJOR
- Major: increment MAJOR, reset MINOR and PATCH to 0
Step 3: Ask for Changelog Content
Use AskUserQuestion or ask the user directly what changes should be documented in this release. The changelog follows this format:
## [VERSION] - YYYY-MM-DD
### New Features
- Feature descriptions here
### Improvements
- Improvement descriptions here
### Bug Fixes
- Bug fix descriptions here
### Database Changes
- Any schema changes here (remind to run migrations)
Only include sections that have content.
Step 4: Update Files
-
Update
package.json: Change theversionfield to the new version number -
Update
CHANGELOG.md: Add the new version section at the top (after the header), above all existing versions
Step 5: Check Database Migrations
Run the following command to check if there are any pending schema changes:
bun run db:generate
If new migrations are generated:
- Inform the user that new migrations were created
- Remind them to run
bun run db:push(dev) orbun run db:migrate(prod) after deployment
If no changes are detected, confirm that migrations are up to date.
Step 6: Summary
Provide a summary of what was done:
- Old version -> New version
- Changelog entries added
- Migration status
- Remind user to commit these changes and create a git tag if desired
Example Changelog Entry
## [0.2.0] - 2026-01-15
### New Features
**Feature Name**
- Description of the feature
- Additional details
### Improvements
**Area of Improvement**
- What was improved
### Database Changes
- Added `column_name` to `table_name` table
> **Note:** Run `bun run db:push` to apply the schema migration.
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.