ワンクリックで
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