con un clic
commit
Create a semantic git commit from staged or unstaged changes
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Create a semantic git commit from staged or unstaged changes
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
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
| 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>