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.