con un clic
commit
Create a well-formatted git commit with staged 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 well-formatted git commit with staged 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.
Create PlantUML diagrams and add them to documentation
Docker commands for containers, images, and compose
Explain how code works in plain language
GitHub CLI commands for PRs, issues, repos, and workflows
Git commands, workflows, and troubleshooting
Go toolchain commands - build, test, modules, and more
Basado en la clasificación ocupacional SOC
| name | commit |
| description | Create a well-formatted git commit with staged changes |
| disable-model-invocation | true |
| allowed-tools | Bash, Read, Glob, Grep |
Create a git commit for the currently staged changes.
Run git status to see staged and unstaged changes
Run git diff --cached to review what will be committed
Analyze the changes and determine:
Create a commit message following this format:
Run git commit -m "..." with the message
Show git log -1 to confirm
feat: New featurefix: Bug fixrefactor: Code restructuring without behavior changedocs: Documentation onlytest: Adding or updating testschore: Maintenance tasks, dependencies, configGood:
feat: add user authentication via OAuth
Implements OAuth2 flow with Google and GitHub providers.
Tokens are stored securely in httpOnly cookies.
Bad:
updated stuff