원클릭으로
commit
Create a git commit following the project's conventional commit rules
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create a git commit following the project's conventional commit rules
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | commit |
| description | Create a git commit following the project's conventional commit rules |
Create a git commit for staged and unstaged changes.
This project uses commitlint with @commitlint/config-conventional, enforced by a lefthook commit-msg hook.
Rules:
<type>: <subject> (no scope required)type: prefix), lowercase, no trailing periodThis project uses semantic-release. Some types trigger a release (new version published to users), others do not. Choose carefully — a wrong type means an unnecessary release.
Release-triggering types — only use when the change is meaningful to end users:
feat: → minor release — a new user-facing featurefix: → patch release — a bug fix that affects user behaviorperf: → patch release — a performance improvement users would noticerefactor: → patch release — use only if it changes observable behavior; otherwise use chore:revert: → patch release — reverting a user-facing changeNon-release types — use for everything else:
chore: → no release — tooling, CI, dependencies, config, internal cleanupdocs: → no release — documentation changesstyle: → no release — formatting, whitespace, linting fixestest: → no release — adding or fixing testsci: → no release — CI/CD pipeline changesbuild: → no release — build system changesRule of thumb: if the change doesn't affect what end users experience when running the integration, it should NOT trigger a release. Use chore:, docs:, style:, test:, ci:, or build: instead.
Examples:
chore: (not fix: — this is internal tooling)docs: (not fix:)chore: (not perf: — users don't see this)fix: (users are affected)feat: (users get new functionality)git status and git diff to review all changesgit log --oneline -5 to match the existing commit stylegit add -A)