Notre avis
Automatise les commits git avec des messages de commit conventionnels standardisés basés sur les changements staging ou non staging.
Points forts
- Garantit un format de message de commit cohérent suivant les commits conventionnels
- Réduit les erreurs de saisie manuelle
- Staging automatique de tous les changements avant le commit
- Fournit un historique structuré des commits
Limites
- Suppose que tous les changements doivent être staging (git add .)
- Ne supporte pas la sélection interactive des fichiers
- Limitée aux messages de commit sur une seule ligne
Utilisez lorsque vous devez faire un commit rapide avec un message standardisé pour un ensemble de modifications.
Évitez lorsque vous devez sélectionner des fichiers de manière sélective ou écrire des messages de commit détaillés sur plusieurs lignes.
Analyse de sécurité
SûrThe skill uses only standard git commands (status, diff, add, commit) with no destructive or exfiltration operations. The allowed-tools restrict execution to Bash(git:*) scope. There is no network access, file deletion, or any risky behavior.
Aucun point d'attention détecté
Exemples
Commit my current changes.Commit with message 'feat: add login functionality'name: git-cm description: Commit changes to git with a descriptive conventional commit message. Use when ready to commit staged or unstaged changes. argument-hint: "[optional commit message]" disable-model-invocation: true allowed-tools: Bash(git:*)
Git Commit
Commit changes with a conventional commit message.
-
Check the current git status to understand what has changed.
- Command:
git status
- Command:
-
View the diff if necessary to understand the changes better.
- Command:
git diff --stagedorgit diff
- Command:
-
Add all changes to the staging area (unless specific files are requested).
- Command:
git add .
- Command:
-
Commit the changes with a descriptive and conventional commit message.
- Command:
git commit -m "<type>: <subject>" - Ensure the message follows conventional commit standards (e.g., feat, fix, chore, docs, refactor).
- Command:
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.