en un clic
commit
Create a semantic git commit from staged or unstaged changes
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Create a semantic git commit from staged or unstaged changes
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle SOC
| name | commit |
| description | Create a semantic git commit from staged or unstaged changes |
Creates a well-formatted semantic commit message based on the actual changes made.
git status --short
If no changes, inform user and stop.
Review the diff to understand changes:
git diff HEAD --stat
git diff HEAD
git add -A
Generate a commit message following these conventions:
feat:, fix:, refactor:, docs:, chore:, test:, style:Commit with the generated message:
git commit -m "<generated message>"
<type>: <short summary>
<optional body explaining what changed and why>
🤖 Generated with Claude Code
Co-Authored-By: Claude <noreply@anthropic.com>
feat: - New feature or capabilityfix: - Bug fixrefactor: - Code restructuring without behavior changedocs: - Documentation onlychore: - Build, deps, config changestest: - Adding or fixing testsstyle: - Formatting, whitespace, etc.For changes to task filtering:
feat: add task priority filtering
- Add priority dropdown to TasksView header
- Implement usePriorityFilter hook
- Update TaskList to respect filter
🤖 Generated with Claude Code
Co-Authored-By: Claude <noreply@anthropic.com>
Generate a new React component with Mantine styling
Update documentation after implementing features or making changes
Run a quick architecture review via architect-reviewer agent
Generate mobile-specific React components with platform detection and safe areas
Run a quick security audit on recent changes or specific files
Generate a test file for a component, hook, or utility