git-commit

Validate commit messages against the Conventional Commit format.

Updated Jun 5, 2026
One-click install
npx skills add https://github.com/KangJiSseok/ACODIAN --skill git-commit-kangjisseok
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: git-commit
Source: https://github.com/KangJiSseok/ACODIAN/tree/main/.codex/skills/git-commit
Command: npx skills add https://github.com/KangJiSseok/ACODIAN --skill git-commit-kangjisseok

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

이 스킬은 현재 AX-WMS 프로젝트의 커밋 메시지를 Conventional Commit 형식(타입 + 제목 + 본문 + 꼬리말)에 맞춰 작성하도록 돕습니다. 사용자가 변경 사항을 커밋하려고 하거나, 커밋 메시지를 작성/검토/수정해 달라는 요청이 있을 때 사용합니다. "커밋해줘", "commit message 만들어줘", "이 변경사항 커밋 메시지 어떻게 쓸까?" 같은 요청에도 대응합니다.

Core Features & Use Cases

  • 커밋 메시지 구조를 강제하고 가이드한다. 타입, 선택적 범위(scope), 제목, 본문으로 구성되며 메시지의 일관성을 보장한다.
  • 커밋 타입 표와 예시를 제공해 메시지의 명확성과 기록의 가독성을 향상시킨다.
  • 메시지 작성 워크플로를 돕기 위한 체크리스트와 예시를 생성한다.

Quick Start

현재 변경 사항에 대해 Conventional Commit 형식으로 커밋 메시지를 작성해 달라

Frequently Asked Questions about git-commit

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
What is the conventional commit format and when do I need it?

The conventional commit format structures messages using a type, optional scope, subject, and body. You need it when preparing commits to ensure consistent formatting and clear project change records.

How do I automate git commit message formatting?

You can automate git commit message formatting by applying conventional commit standards that validate the presence of type and subject. This guides consistent formatting and provides examples for clarity.

Can I include an optional scope in a conventional commit?

Yes, you can include an optional scope in a conventional commit alongside the required type and subject. The scope adds context to the change while maintaining the enforced structural consistency.

What are the best practices for git commit message standards?

Best practices for git commit message standards involve enforcing a conventional commit style with a type, optional scope, subject, and body. This approach validates structure and guides consistent formatting.

Why does my git commit message fail conventional commit validation?

Your git commit message fails conventional commit validation if it lacks the mandatory type or subject. Enforcing this structure ensures consistent formatting and clear change tracking across the project.