ワンクリックで
commit
Create Git commits by splitting changes into logical units following project conventions
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Create Git commits by splitting changes into logical units following project conventions
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Architecture reference for Java + Spring Boot 4.0 projects — Controller/Service/Repository layer responsibilities, @Transactional strategy (readOnly optimization, N+1 prevention), ExpectedException usage, and Entity↔DTO conversion patterns.
Code review checklist and automatic verification for Java + Spring Boot code
Interview user in-depth to create a detailed implementation spec
| name | commit |
| description | Create Git commits by splitting changes into logical units following project conventions |
Create Git commits following these rules:
type(scope): 설명
Priority: Domain name > Module name
Domain names (Primary):
Cross-cutting concerns only:
Wrong Examples:
fix(global): JWT 만료 예외 처리 수정 → fix(auth): JWT 만료 예외 처리 수정update(global): 학생 엔티티 수정 → update(student): 엔티티 필드 추가Correct Cross-cutting Usage:
refactor(global): 공통 예외 처리 로직 개선update(ci/cd): GitHub Actions 워크플로우 최적화Steps:
git status and git diffgit addgit commit -m "message"git log --oneline -n [number of commits]