Notre avis
Ajoute les modifications pertinentes et crée un message de commit bien formaté selon les normes de commits conventionnels.
Points forts
- Ajoute automatiquement les changements de manière intelligente en regroupant les fichiers liés
- Impose un format de message de commit clair et cohérent
- Réduit la charge cognitive liée à la structure du message de commit
- Évite automatiquement de commiter les fichiers sensibles comme .env
Limites
- Peut ne pas toujours regrouper correctement les changements non liés s'ils apparaissent ensemble
- Se base sur le jugement du modèle pour l'ajout, qui peut parfois oublier des fichiers
- Ne supporte qu'un ensemble fixe de types de commit
Utilisez lorsque vous voulez commiter rapidement des modifications avec un message bien formaté sans saisie manuelle.
Ne l'utilisez pas si vous devez rédiger un message de commit détaillé sur plusieurs lignes ou si vous souhaitez examiner manuellement les modifications ajoutées.
Analyse de sécurité
PrudenceThe skill automates git staging and committing, which is a powerful operation. While it instructs to avoid secret files, the AI's judgment may not be perfect, and the commit happens without user review. No destructive or exfiltrating actions.
- •Automatically stages and commits changes without user confirmation, relying on AI to avoid staging secrets. Risk of accidentally committing sensitive files.
Exemples
commit the changescommit these changes as a fixstage and commit everything I've donename: commit description: Stage and commit changes with standardized format user-invocable: true disable-model-invocation: true
Standardized Commit
Current State
!git status --short
!git diff --stat
!git diff --cached --stat
Instructions
Based on the git status and diff above:
-
Stage changes if not already staged:
- Stage relevant files (use judgment on what belongs together)
- Do not stage unrelated changes
- Do not stage files that likely contain secrets (.env, credentials, tokens)
-
Write commit message in this format:
<type>: <description>Types:
fix: Bug fixfeat: New featurerefactor: Code restructuring (no behavior change)docs: Documentation onlytest: Adding/updating testschore: Build, config, tooling changes
Rules:
- Description is lowercase, no period at the end
- Keep under 72 characters total
- Be specific: not "fix bug" but "fix null pointer in request handler"
- Use imperative mood: "add feature" not "added feature"
-
Commit without asking for confirmation. Use a HEREDOC for the message:
git commit -m "$(cat <<'EOF' <type>: <description> EOF )"
Examples
Good:
fix: handle empty response in sglang backendfeat: add per-user rate limiting middlewarerefactor: extract token validation to separate moduledocs: update sglang disaggregation deployment guidechore: bump maturin version to 1.8
Bad:
Fix bug(too vague, wrong case)Updated code(meaningless, past tense)WIP(not a complete commit)fix: fix the thing.(period, vague)
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.