스테이징된 변경사항(git diff --staged)에서 적절한 커밋 메시지를 생성합니다. git 명령은 실행하지 않고, 메시지 생성과 클립보드 복사만 수행합니다.
/plugin marketplace add wasabeef/claude-code-cookbook/plugin install cook-ko@claude-code-cookbook## Commit Message 스테이징된 변경사항(git diff --staged)에서 적절한 커밋 메시지를 생성합니다. git 명령은 실행하지 않고, 메시지 생성과 클립보드 복사만 수행합니다. ### 사용법 ### 옵션 - `--format <형식>` : 메시지 형식 지정(conventional, gitmoji, angular) - `--lang <언어>` : 메시지 언어 강제 지정(en, ko) - `--breaking` : Breaking Change 감지 및 표시 ### 기본 예제 ### 전제 조건 **중요**: 이 명령어는 스테이징된 변경사항만 분석합니다. 먼저 `git add`로 변경사항을 스테이징해야 합니다. ### 자동 클립보드 기능 생성된 메인 후보는 `git commit -m "메시지"`의 완전한 형태로 자동으로 클립보드에 복사됩니다. 터미널에서 바로 붙여넣기해서 실행할 수 있습니다. **구현 시 주의사항**: - 커밋 명령을 `pbcopy`에 전달할 때는 메시지 출력과는 별도 프로세스로 실행할 것 - `echo` 대신 `printf`를 사용해서 끝의 개행을 피할 것 ### 프로젝트 규약 자동 감지 ...
/commit-messageGenerates commit messages from staged changes (git diff --staged). This command only creates messages and copies them to your clipboard—it doesn't run any git commands.
/commit-messageステージングされた変更 (git diff --staged) から適切なコミットメッセージを生成します。git コマンドの実行は行わず、メッセージの生成とクリップボードへのコピーのみを行います。