ワンクリックで
fix-commit-message
Rewrites the last commit message to match the project commit message template. Invoke manually with /fix-commit-message.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Rewrites the last commit message to match the project commit message template. Invoke manually with /fix-commit-message.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Manage GitLab merge requests, issues, and repository tasks for the ISS project. Use when the user wants to create MRs, view MRs, list MRs, open MRs in browser, create branches, view issues, or any GitLab-related workflow request. Triggers on "create a MR", "open MR", "list my MRs", "view issue", "create branch", or any GitLab workflow request.
Manage Jira tickets for the ANANSI project. Use when the user wants to create tickets, move ticket state, open tickets in browser, or create git branches from ticket names. Triggers on "create a ticket", "move ticket to", "open ANANSI-123", "create branch for ticket", "transition ticket", or any Jira-related workflow request.
| name | fix-commit-message |
| description | Rewrites the last commit message to match the project commit message template. Invoke manually with /fix-commit-message. |
| allowed-tools | Bash, Read, Edit, Write |
| disable-model-invocation | true |
Rewrite the last commit message to match the project commit message template.
<short imperative summary>
<Why this change is needed — one or more paragraphs explaining the
context and motivation behind the work.>
This development adds the following:
1. <First thing added/changed>
2. <Second thing added/changed>
3. <Third thing added/changed>
Resolves <TICKET-XXXX>
**DEPLOYMENT INSTRUCTIONS:**
* <Step 1 — e.g. run migrations>
* <Step 2 — e.g. register a periodic task>
* <Step 3 — e.g. create cloud storage buckets, update env vars, etc.>
git log -1 --format="%B" to read the current commit message.git diff HEAD~1 HEAD to understand what was actually changed.git rev-parse --abbrev-ref HEAD).git commit --amend -m "..." using a HEREDOC to preserve formatting.