Skip to main content

commit

Create conventional commit messages. Use when the user says "commit this", "save changes", "git commit", asks to commit code, write a commit message, or format git history. Follows conventional commits specification.

설치로 이동

소스 정보

저장소
poteto/noodle
최근 소스 활동
2026년 3월 19일 04:43
감지된 SKILL.md 언어
영어
스타
281
포크
16

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
commit
description
Create conventional commit messages. Use when the user says "commit this", "save changes", "git commit", asks to commit code, write a commit message, or format git history. Follows conventional commits specification.
# Conventional Commits Follow these project-specific rules when creating commits. ## Branching **Never create bare branches.** If you need branch isolation, use the `worktree` skill. For simple changes, commit directly on the current branch (including main). Do not run `git checkout -b`. ## Project Rules - **One commit per logical change** — never combine unrelated fixes or features. Three independent changes = three commits. - **Only commit files you changed** — never pull in unrelated files from concurrent sessions. - **Always include a body** — no title-only commits. Explain what and why. - **`merge` type** — use `merge` (not a merge commit) when merging a worktree or feature branch. - **Sequence commits** to maximise option value — foundational infrastructure first, then features that build on it. ## Example ``` feat(alerts): Add Slack thread replies for alert updates When an alert is updated or resolved, post a reply to the original Slack thread instead of creating a new message. This keeps related notifications grouped together. ``` ## References - [Conventional Commits Specification](https://www.conventionalcommits.org/en/v1.0.0/#specification)
GitHub에서 보기