소스 정보
- 저장소
- rafeautie/skills
- 최근 소스 활동
- 2026년 7월 18일 20:48
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/rafeautie/skills --skill commit명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | commit |
| description | Stage all changes and commit them to the current branch with a generated message. |
| argument-hint | [optional guidance about the message or what changed] |
| disable-model-invocation | true |
| model | opus |
| effort | medium |
| allowed-tools | Bash(git add *) Bash(git commit *) Bash(git status *) Bash(git diff *) Bash(git log *) |
Stage everything in the working tree, write a commit message from the actual diff, and commit to the current branch. Do all of it in one pass; do not stop to ask for approval of the message.
$ARGUMENTS, if present, is guidance about intent or emphasis. It tells you why the change was made or what to foreground. It is not the literal message text.
Run these together:
git status to see the shape of the changegit diff HEAD to read what actually changedgit log -10 --format='%s%n%n%b' to learn this repo's conventionsRead the diff. The message has to come from what the code does, not from the filenames.
The log read is not optional. Every repo has its own habits, and this repo's recent history is the authority on them. Where its conventions conflict with the defaults below, the repo wins.
If the tree is clean, say so and stop. Do not create an empty commit.
git add -A.
Subject: imperative, sentence case, completing "This commit will…". No conventional-commits prefix, no scope, no trailing period, no emoji.
Body: blank line after the subject, hard-wrapped at about 72 characters. Explain why, and specifically the causal story: what was wrong, why it mattered, what the change removes or unblocks. Cite concrete specifics; a number or a named failure mode carries more than a restatement of the diff. The diff already says what changed, so the body is for what the diff cannot show.
Prose paragraphs by default. Use bullets only when the commit genuinely is a list of independent cleanups. A bare subject with no body is fine for self-explanatory work; a body that only paraphrases the subject is worse than no body.
No em dashes. Use semicolons, commas, or periods.
Do not add Co-Authored-By or session trailers.
Pass a multi-line message with a heredoc:
git commit -F - <<'EOF'
Subject line here
Body here.
EOF
Commit to the current branch. Never create or switch branches, and never --amend unless asked.
If the commit fails or a pre-commit hook rejects it, report what happened. Do not retry with --no-verify.
Print the subject line and the short SHA.