원클릭으로
commit
Generate a conventional commit for staged changes. Use when the user says "commit", "save changes", or "commit this".
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Generate a conventional commit for staged changes. Use when the user says "commit", "save changes", or "commit this".
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Pick a bug from Linear, fix it test-first, verify, and update. Use when the user says "fix issue", "fix bug", "work on known issue", or "pick a bug".
Create a new ticket for task tracking. Use when the user says "create ticket", "new ticket", or "track this".
Diagnose an integration/E2E test log, classify failures by severity, and batch-create issues. Use when the user says "smoke test", "diagnose log", "triage test log", or provides a test log.
Pull Linear issues and generate a local snapshot for quick reference. Use when the user says "sync linear", "pull linear issues", "update from linear", or "show my issues".
Triage, prioritize, and groom Linear issues. Use when the user says "triage linear", "review inbox", "prioritize issues", "groom backlog", or "clean up issues".
Investigate a bug using structured differential diagnosis. Use when the user says "diagnose", "investigate this", "what's causing this", or "figure out why".
| name | commit |
| description | Generate a conventional commit for staged changes. Use when the user says "commit", "save changes", or "commit this". |
| argument-hint | [commit message override] |
| user-invocable | true |
| allowed-tools | Bash, Read, Grep |
| model | haiku |
Create a well-structured commit from staged (and optionally unstaged) changes.
Check the current state:
git status
git diff --cached --stat
git diff --stat
If nothing is staged, ask the user what to stage. Do NOT run git add -A automatically.
Analyze the staged diff:
git diff --cached
Determine the commit type from the changes:
feat: — new functionalityfix: — bug fixrefactor: — code restructuring without behavior changetest: — adding or updating testsdocs: — documentation changeschore: — build, config, dependency changesperf: — performance improvementGenerate a commit message following this format:
<type>(<scope>): <subject>
[optional body — what and why, not how]
Rules:
auth, api, config)If $ARGUMENTS is provided, use it as the commit message instead of generating one.
Show the proposed commit message to the user and ask for confirmation before committing.
Create the commit using a HEREDOC:
git commit -m "$(cat <<'EOF'
<the commit message>
EOF
)"
git add -A or git add . — always stage specific files--no-verify — let pre-commit hooks run--no-verify