Messages de commit conventionnels

VérifiéSûr

Génère des messages de commit au format Conventional Commits en analysant les modifications indexées. Utile pour créer des commits structurés avec des types précis (feat, fix, etc.) et des descriptions concises, facilitant la relecture de l'historique.

Spar Skills Guide Bot
DeveloppementIntermédiaire
10002/06/2026
Claude CodeCursorWindsurfCopilotCodex
#commit#conventional-commits#git#commit-messages

Recommandé pour

Notre avis

Génère des messages de commit au format Conventional Commits et crée des commits à partir des modifications indexées.

Points forts

  • Structure les messages de manière claire avec type et scope optionnel
  • Automatise le respect des bonnes pratiques de commit
  • Analyse les modifications indexées pour choisir le type approprié

Limites

  • Nécessite que les modifications soient indexées (staged)
  • Peut ne pas capturer correctement l'intention derrière des changements complexes
  • Le corps du message n'est ajouté que si nécessaire, ce qui peut omettre des détails importants
Quand l'utiliser

Utilisez cette compétence pour standardiser vos messages de commit dans un projet suivant Conventional Commits.

Quand l'éviter

Évitez-la si vous préférez rédiger manuellement des messages très détaillés ou si votre projet utilise un format de commit différent.

Analyse de sécurité

Sûr
Score qualité90/100

The skill only instructs to run 'git diff --staged' to read staged changes, which is a safe, read-only operation. No destructive, exfiltrating, or obfuscated commands are used.

Aucun point d'attention détecté

Exemples

Generate a commit for staged changes
Write a commit message for the staged changes using Conventional Commits format.
Commit with specific type and scope
Create a commit with type 'feat' and scope 'auth' for the staged changes.
Review staged changes before commit
Review the staged changes and suggest an appropriate Conventional Commit message.

name: commit description: Generates commit messages and creates commits. Use when writing commit messages, committing changes, or reviewing staged changes.

Commit Messages

Use Conventional Commits format.

Format

<type>(<scope>): <description>

[optional body]

Types

  • feat: User-facing features or behavior changes (must change production code)
  • fix: Bug fixes (must change production code)
  • docs: Documentation only
  • style: Code style/formatting (no logic changes)
  • refactor: Code restructuring without behavior change
  • test: Adding or updating tests
  • chore: CI/CD, tooling, dependency bumps, configs (no production code)

Scopes

Optional. Use when it adds clarity. Examples: ui, api, state, auth.

Examples

feat(search): add infinite scroll to results
fix(album): correct image path validation
refactor(state): simplify album loading machine
chore: add husky pre-commit hooks
docs: update API documentation
test: add E2E tests for login flow

Instructions

  1. Run git diff --staged to see staged changes
  2. Analyze the changes and determine the appropriate type
  3. Write a concise description (under 72 characters)
  4. Add body only if the "why" isn't obvious from the description
Skills similaires