commit
スター17
フォーク0
更新日2026年7月16日 06:24
How to write git commit messages in this repo. Use whenever creating a commit.
インストール
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SKILL.md
readonlyメニュー
How to write git commit messages in this repo. Use whenever creating a commit.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | commit |
| description | How to write git commit messages in this repo. Use whenever creating a commit. |
Every commit message is a single line following the Conventional Commits format (https://www.conventionalcommits.org/en/v1.0.0/):
<type>: <subject>
feat: filter out unopenable files in the command palettefix: confirm branch deletion with the Enter keyrefactor: merge document and project storeschore: upgrade Electron to v43docs: highlight Git in the main Readmetest: specify a user data directory in E2E testsfeat: add venue search, not feat(palette): add venue search.fix: docker build errorFix: fixed the docker build error.(#380). GitHub adds those on squash merge.feat: handle quotes and soft/line breaks (HS lib update).The commit's author and committer must be the user creating the PR, and no one
else. Never add a Co-Authored-By trailer, a "Generated with" line, or any
other attribution (AI or human) to the commit message.
git diff --staged) and write a message that
matches what actually changed.Closes #383 belong
in the PR description, which becomes the squash commit body on merge.