.codex/skills/commit/SKILL.md
변경된 파일을 기능별로 그룹화하여 커밋 생성
npx skillsauth add Mineru98/skills-store commitInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
지금 즉시 아래 워크플로우를 실행하라. 질문하지 말고 바로 실행하라.
git status
git diff --stat
git log --oneline -3
위 상태를 분석하여 다음을 수행하라:
feat - 새로운 기능 추가fix - 버그 수정docs - 문서 업데이트style - 코드 스타일 수정 (동작 변경 없음)refactor - 코드 리팩토링test - 테스트 추가/수정chore - 유지보수 작업git add로 스테이징한 뒤 커밋한다.git log --oneline -5로 결과를 확인한다.<type>(<scope>): <subject>git commit -m "한글" 사용 시 터미널 환경에 따라 한글이 깨질 수 있다. 반드시 HEREDOC 또는 임시 파일 방식을 사용하라.
git commit -m "$(cat <<'EOF'
feat(auth): JWT 로그인 및 미들웨어 추가
- JWT 토큰 생성 구현
- 보호된 라우트용 인증 미들웨어 추가
Co-Authored-By: Codex
EOF
)"
PowerShell에서는 -m 옵션으로 한글 전달 시 인코딩 문제가 발생한다. UTF-8 임시 파일을 사용하라:
chcp 65001
# commit_msg.txt에 UTF-8로 메시지 작성 후:
git commit -F commit_msg.txt
Remove-Item commit_msg.txt
사용자 힌트: $ARGUMENTS
tools
Use when browser automation, web testing, screenshots, form filling, scraping, or page interaction is needed. Prefer Codex Playwright browser tools for navigation, clicking, typing, screenshots, tabs, and waiting. Fall back to the local `playwright-cli` command when CLI-based browser control or artifact files are specifically useful.
tools
지정한 포트에서 실행 중인 프로세스를 찾아 종료합니다.
development
Guide for defining and using Claude subagents effectively. Use when (1) creating new subagent types, (2) learning how to delegate work to specialized subagents, (3) improving subagent delegation prompts, (4) understanding subagent orchestration patterns, or (5) debugging ineffective subagent usage.
tools
Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, test web applications, or extract information from web pages.