Stats
Actions
Tags
From claudio-agents-kit
Formato de mensajes de commit siguiendo Conventional Commits. Invocar en cada commit para mantener historia limpia y permitir CHANGELOG automático.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claudio-agents-kit:commit-message-formatThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
```
<type>(<scope>): <subject>
<body opcional>
<footer opcional>
| Type | Cuándo usarlo |
|---|---|
feat | Nueva funcionalidad visible para el usuario |
fix | Corrección de bug |
refactor | Cambio de código sin cambiar comportamiento |
perf | Optimización de performance |
test | Agregar o modificar tests |
docs | Solo documentación (README, docstrings) |
chore | Mantenimiento (deps, configs, tooling) |
ci | Cambios en CI/CD |
build | Cambios en sistema de build |
style | Formato, linter (sin cambio de código) |
El módulo o área afectada:
feat(auth): ...fix(orders): ...chore(deps): ...refactor(etl): ...Si el commit toca varios módulos, no hay scope:
refactor: extract common validation logicfeat(orders): add filter by date range to list endpoint
fix(auth): prevent token refresh race condition
refactor(etl): extract CSV parsing into reusable function
perf(reports): use window function instead of subquery
test(orders): add edge cases for negative quantities
docs: update README installation steps for Windows
chore(deps): bump fastapi to 0.110.0
update code ← ¿qué código? ¿qué update?
Fixed stuff. ← pasado + no dice qué
feat: new feature ← cero información
WIP ← no commitear WIPs a branches compartidos
asdasd ← en serio
Cuándo agregar body: si el "por qué" no es obvio del subject.
refactor(etl): switch from iterrows to vectorization
Loop sobre 200k filas tardaba 45s, ahora 0.8s.
El resultado es idéntico (validado con hash del DataFrame final).
Closes #42
feat(api)!: change users endpoint response shape
BREAKING CHANGE: `GET /users` now returns `{items, total}` instead of `[...]`.
Frontend needs to update consumer.
Footer:
Closes #123
Fixes #456
Refs #789
git add -p # stageá por hunks, revisá cada cambio
git commit -m "feat(x): add y"
git log --oneline -5 # revisá últimos commits antes de push
Si tu diff tiene:
Regla: cada commit debería poder revertirse sin romper nada más.
npx claudepluginhub xguilxr/claudio-enterprises --plugin claudio-agents-kitGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.