원클릭으로
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]