commit
스타12
포크1
업데이트2026년 4월 1일 13:32
Create a well-formatted git commit following project conventions
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
Create a well-formatted git commit following project conventions
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Validate the user's design for a GitHub issue — challenge, formalize, and document
Formalize the user's ideas into documentation — Mermaid diagrams, rustdoc, README, issues
Review a GitHub pull request for code quality, correctness, and test coverage
| name | commit |
| description | Create a well-formatted git commit following project conventions |
Create a well-formatted git commit.
git status
git diff --staged
If nothing is staged, ask what should be committed
Run tests and clippy before committing:
cargo test
cargo clippy -- -D warnings
Write a commit message following conventional commits:
feat: new featurefix: bug fixrefactor: code refactoringtest: adding testsdocs: documentationchore: maintenanceCreate the commit:
git commit -m "type: description"
Note: Do NOT add Co-Authored-By lines (per project conventions).
git log -1$ARGUMENTS