commit
스타1
포크0
업데이트2026년 7월 17일 08:20
Stage changes and create a git commit following project naming conventions
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
Stage changes and create a git commit following project naming conventions
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Audit components and pages for accessibility issues
Full code review across accessibility, SEO, performance, and design consistency
Scaffold a new component inside an existing feature module with proper patterns
| name | commit |
| description | Stage changes and create a git commit following project naming conventions |
Stage all changes and create a commit message following the project's conventional commit format.
This project uses conventional commits with these prefixes:
| Prefix | When to use |
|---|---|
feat: | New feature or component |
fix: | Bug fix |
update: | Enhancement to existing feature (not a fix, not new) |
refactor: | Code restructuring without behavior change |
style: | CSS/styling changes only |
chore: | Dependencies, config, tooling |
docs: | Documentation changes |
: (colon + space)git diff --staged to understand what changed before writing the messagefeat: add project detail modal with screenshot gallery
fix: correct email typo in footer social links
update: redesign skill cards with category filtering
refactor: extract section header into reusable component
style: adjust dark mode border colors for better contrast
chore: remove unused zustand dependency
git diff --staged to review what will be committed. If nothing is staged, run git add -A first.git commit with the formatted message.