Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기commit
스타23
포크0
업데이트2026년 7월 25일 19:12
Create a git commit
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
Create a git commit
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | commit |
| description | Create a git commit |
Create a git commit for the current staged and unstaged changes.
Run git status (never use -uall) and git diff (staged + unstaged) and git log --oneline -10 in parallel
Stage the relevant files by name (avoid git add -A or git add .). Do not commit files that likely contain secrets (.env, credentials, etc)
Write a concise commit message:
fix(scanner):, feat(subsonic):, refactor(db):) if the project already uses that style, otherwise match the project's existing commit styleCo-Authored-By trailerCreate the commit. Pass the message via HEREDOC:
git commit -m "$(cat <<'EOF'
message here
EOF
)"
Run git status to verify