ワンクリックで
commit
Create a well-formatted git commit with staged changes
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Create a well-formatted git commit with staged changes
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
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
| 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