com um clique
commit
Create a well-formatted git commit with staged changes
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Create a well-formatted git commit with staged changes
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
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
Baseado na classificação 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