원클릭으로
git-commit
Stage changes and write a clean conventional commit message (use when the user wants to commit their work / says "commit this")
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Stage changes and write a clean conventional commit message (use when the user wants to commit their work / says "commit this")
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | git-commit |
| description | Stage changes and write a clean conventional commit message (use when the user wants to commit their work / says "commit this") |
| version | 1.0.0 |
| author | 0pen-sourcer |
| tools | ["run_command"] |
Turn the current working changes into ONE well-scoped commit with a clear message. Read the diff first, never commit blind.
run_command git status --short to see what changed. If nothing is changed, say so and stop.run_command git diff (and git diff --staged if anything is already staged) and actually read the changes. Understand what they do before writing a word.git add -A (or name specific files when some edits are unrelated and should be left out — ask if unsure).<type>: <what changed>, imperative, under ~70 chars. Types: feat, fix, docs, refactor, test, chore, perf, style.run_command git commit -m "..." (use a real multi-line message when there is a body).git status shows nothing staged and nothing to add.git push unless the user explicitly says to.Sort a messy Downloads folder into per-type subfolders (use when the user says their Downloads is a mess / wants it organized)
Track down a bug methodically instead of guessing (use when the user reports something is broken / throwing / not working)
Read recent email and sort it into what actually needs a reply (use when the user asks what's in their inbox / to triage their email)
Scaffold a fresh Python project — folder, virtualenv, .gitignore, README, git init (use when the user wants to start a new Python project)
Move screenshots into YYYY-MM dated folders so the desktop/screenshots folder stops drowning (use when screenshots are piling up)
Research a topic across several sources and write a cited brief (use when the user asks you to research / "look into" / summarize a topic from the web)