Prompt and workflow for generating conventional commit messages. Use when:
- Committing changes with standardized messages
- Following the Conventional Commits specification
- Generating commit messages from staged changes
Instalación
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.
Prompt and workflow for generating conventional commit messages. Use when:
- Committing changes with standardized messages
- Following the Conventional Commits specification
- Generating commit messages from staged changes
Conventional Commit Workflow
Steps
Run git status to review changed files
Run git diff or git diff --cached to inspect changes
Stage changes with git add <file>
Construct the commit message using the format below
Optional but recommended. Use the service or module name:
agent, functions, web-app, infra, docs, scripts
Examples
feat(agent): add memory compaction for long conversations
fix(functions): handle empty HTML in fn-convert
docs(epics): mark story 3 complete in epic 011
refactor(web-app): extract sidebar component
ci: add pre-commit hook for linting
chore: update uv lockfile
feat!: migrate to Responses API (BREAKING CHANGE: old chat endpoint removed)
Rules
Type: Must be one of the allowed types
Description: Required, imperative mood ("add", not "added")
Body: Optional, additional context
Footer: Use for breaking changes (BREAKING CHANGE: ...) or issue references (Closes #123)