Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기commit
스타40
포크8
업데이트2026년 7월 8일 13:38
Commit changes to the repository
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
Commit changes to the repository
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | commit |
| description | Commit changes to the repository |
Check git diff and git diff --staged before writing a message.
One commit per logical unit of work.
topic: subject — conventional commits
CI rejects unformatted C/C++. Before committing, run clang-format once on the staged C/C++ files and re-stage them:
git diff --cached --name-only -- '*.cpp' '*.h' '*.hpp' '*.cc' '*.cxx' \
| xargs -r clang-format -i && git add -u