con un clic
commit
Create well-formatted commits following conventional commit standards
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 well-formatted commits following conventional commit standards
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
Systematic approach to debugging and fixing issues
Create well-documented pull requests with proper descriptions
Safe code refactoring with proper testing and incremental changes
Guide for integrating external APIs securely and correctly
Reviews pull requests for code quality, security, and conventions
Test-Driven Development workflow - write tests first, then implement
| name | Commit |
| description | Create well-formatted commits following conventional commit standards |
| triggers | ["/commit","commit changes","commit this"] |
| allowed-tools | ["Read","Glob","Grep","Bash(git status*)","Bash(git diff*)","Bash(git add*)","Bash(git commit*)","Bash(git log*)"] |
Create clean, well-documented commits following conventional commit standards.
git status
git diff
git diff --staged
Before committing:
Stage related changes together. Split unrelated changes into separate commits.
# Stage specific files
git add src/feature.ts src/feature.test.ts
# Stage all changes in a directory
git add src/components/
Follow Conventional Commits format:
<type>(<scope>): <subject>
<body>
<footer>
| Type | Use For |
|---|---|
feat | New feature |
fix | Bug fix |
docs | Documentation changes |
style | Formatting (no code change) |
refactor | Code restructuring |
perf | Performance improvement |
test | Adding/fixing tests |
chore | Maintenance tasks |
Feature:
feat(auth): add password reset flow
- Add forgot password form
- Implement email service integration
- Add token validation endpoint
Closes #123
Bug Fix:
fix(cart): prevent duplicate items on rapid clicks
Added debounce to add-to-cart button to prevent
race condition causing duplicate entries.
Fixes #456
Refactor:
refactor(utils): consolidate date formatting functions
Merged 4 duplicate implementations into shared utility.
No behavior changes.
git commit -m "type(scope): subject"
For multiline messages:
git commit -m "$(cat <<'EOF'
feat(payments): add Stripe integration
- Configure Stripe client
- Add checkout session creation
- Implement webhook handlers
Closes #789
EOF
)"
Each commit should be: