Debugging et maintenancesource GitHub
Committage git simplifié
/commit-fastGénérer 3 suggestions de messages de validation sur la base des changements échelonnés, puis utiliser automatiquement la première suggestion sans confirmation de l'utilisateur.
// contenu du skill
Streamlined git commit
Generate 3 commit message suggestions based on the staged changes, then automatically use the first suggestion without user confirmation.
Follow conventional commit format (see @./commit.md) with appropriate title and create descriptive messages that explain the purpose of changes. Skip the manual message selection step to streamline the commit process.
Steps:
- Run
git statusto see staged changes - Generate 3 commit message suggestions following conventional commit format
- Automatically select the first suggestion
- Execute
git commit -mwith the selected message - Exclude Claude co-authorship footer from commits
Commit Types:
- "FEAT": New features
- "FIX": Bug fixes
- "DOC": Documentation changes
- "REFACTOR": Code restructuring without changing functionality
- "STYLE": Code formatting, missing semicolons, etc.
- "PERF": Performance improvements
- "TEST": Adding or correcting tests
- "CHORE": Tooling, configuration, maintenance
- "WIP": Work in progress
- "DEL": Removing code or files
- "HOTFIX": Critical fixes
- "SEC": Security improvements
// source originale publique
czottmann/agent-toolbox/commands/commit-fast.md
Licence : Licence non indiquée. Consultez le dépôt avant toute réutilisation.
Projet indépendant, non affilié à Anthropic. Ce skill reste la propriété de son auteur original.