원클릭으로
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.