Notre avis
Automatise les commits de code en exécutant facultativement des vérifications, créant des branches de fonctionnalités et rédigeant des messages de commit conventionnels.
Points forts
- Impose le format de commit conventionnel pour une meilleure traçabilité
- Intègre des vérifications (lint, build, tests) avant de commiter
- Gère automatiquement la création de branches à partir de main
- Filtre les fichiers sensibles (comme .env) pour éviter les fuites
Limites
- Dépend de la configuration Git existante et de la disponibilité des outils de vérification
- Ne gère pas les conflits complexes lors de commits partiels
- Suppose un workflow linéaire avec des branches de fonctionnalités
Utilisez cette compétence lorsque vous souhaitez commiter des modifications avec un workflow standardisé et vérifié automatiquement.
Évitez de l'utiliser si vous devez commiter des changements partiels ou utiliser un format de commit non conventionnel.
Analyse de sécurité
SûrThe skill describes a standard git commit workflow using bash commands for git operations; no destructive, exfiltrating, or obfuscated actions. It does not instruct to run arbitrary network commands or disable safety measures.
Aucun point d'attention détecté
Exemples
Commit my changes.Force commit the current changes, skipping verification.Commit the changes to a new feature branch.name: commit description: Optionally checks, then commits code to the current or a new feature branch.
When asked to commit code, follow these steps:
Arguments
check(default): Run checks first to lint, build, and test the code. Stop if any checks fail.force: Skip the check step and commit directly.
Steps
-
Run these bash commands in parallel to understand the current state:
git statusto see all untracked filesgit diff HEADto see both staged and unstaged changesgit log --oneline -10to see recent commit messages for style consistency
-
If you are on the
mainbranch, create a new feature branch usinggit branchand switch to it. -
Analyze all changes and draft a commit message:
- Summarize the nature of the changes (new feature, enhancement, bug fix, refactoring, test, docs, etc.)
- Use the conventional commit format:
type(scope): description - Keep the first line under 72 characters
- Do not commit files that likely contain secrets (.env, credentials.json, etc.)
-
Stage and commit the changes:
- Add relevant files using
git add - Use a plain string for the commit message (do not use HEREDOCs).
- Add relevant files using
-
Report the results including:
- The commit hash
- The commit message
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.