commit

A command that groups changed files by purpose and creates separate Git commits with Korean messages. Git is a tool for tracking file changes and commits are saved versions of those changes.

In plain words
What is it for?
Use it to inspect the current repository, group changes as features, fixes, documentation, tests, or maintenance, and create commits.
Why use it?
It organizes mixed changes into clearer history and applies a consistent commit format.

Command for Claude Code

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/mineru98/skills-store/commit
Clone the repo
git clone --depth 1 https://github.com/Mineru98/skills-store

Made for: Claude Code.

Per session 15 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 644 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00015 $0.00644
Opus 5 $0.00008 $0.00322
Sonnet 5 $0.00003 $0.00129
Haiku 4.5 $0.00002 $0.00064

Measured 2d ago against content hash 00c0f6926ae1, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

commit scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/commands/commit.md · 69 lines

What it actually says

지금 즉시 아래 워크플로우를 실행하라. 질문하지 말고 바로 실행하라.

현재 상태 수집

!git status
!git diff --stat
!git log --oneline -3

실행 지시

위 상태를 분석하여 다음을 수행하라:

  1. 변경 파일 분석: 위의 git status와 git diff 결과를 기반으로 변경된 파일들을 파악한다.
  2. 기능별 그룹화: 변경 파일들을 아래 기준으로 그룹으로 나눈다:
    • feat - 새로운 기능 추가
    • fix - 버그 수정
    • docs - 문서 업데이트
    • style - 코드 스타일 수정 (동작 변경 없음)
    • refactor - 코드 리팩토링
    • test - 테스트 추가/수정
    • chore - 유지보수 작업
  3. 그룹별 커밋 생성: 각 그룹마다 관련 파일만 git add로 스테이징한 뒤 커밋한다.
  4. 커밋 내역 검증: git log --oneline -5로 결과를 확인한다.

커밋 메시지 규칙

  • 형식: <type>(<scope>): <subject>
  • 커밋 메시지는 반드시 한글로 작성
  • 명령형 현재 시제 사용: "추가", "수정", "삭제"
  • subject는 50자 이내, 끝에 마침표 없음
  • 필요시 body에 상세 설명 추가

한글 커밋 메시지 깨짐 방지

git commit -m "한글" 사용 시 터미널 환경에 따라 한글이 깨질 수 있다. 반드시 HEREDOC 또는 임시 파일 방식을 사용하라.

macOS/Linux (HEREDOC 방식 - 권장)

git commit -m "$(cat <<'EOF'
feat(auth): JWT 로그인 및 미들웨어 추가

- JWT 토큰 생성 구현
- 보호된 라우트용 인증 미들웨어 추가

Co-Authored-By: Claude <[email protected]>
EOF
)"

Windows PowerShell (임시 파일 방식)

PowerShell에서는 -m 옵션으로 한글 전달 시 인코딩 문제가 발생한다. UTF-8 임시 파일을 사용하라:

chcp 65001
# commit_msg.txt에 UTF-8로 메시지 작성 후:
git commit -F commit_msg.txt
Remove-Item commit_msg.txt

사용자 힌트: $ARGUMENTS

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 69 lines · 15 tokens per session scan A 00c0f6926ae1

Subscribe to this mod's changes

commit is a command published in the GitHub repository Mineru98/skills-store (13 stars, last pushed 3d ago), licensed MIT. It adds 15 tokens to every session and 644 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.