원클릭으로
commit-helper
Instructions for writing commit messages; use when the user asks you to create a commit message.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Instructions for writing commit messages; use when the user asks you to create a commit message.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
General-purpose code review skill for agent-driven development; use after making updates to code.
Transform raw brain dumps (dictated freestyle) into structured implementation artifacts. Use when user has messy ideas, scattered thoughts, or dictated stream-of-consciousness about something they want to build. Produces contracts, phased PRDs, and implementation specs written to ./docs/ideation/{project-name}/.
SOC 직업 분류 기준
| name | commit-helper |
| description | Instructions for writing commit messages; use when the user asks you to create a commit message. |
Write clear, concise commit messages following the project standards. You're writing messages for other developers.
A standard commit message follows git standards -- a short message (72 characters or less), optionally followed by concise details, like:
Add 'create account' functionality
- add POST /account endpoint and `createAccount` method to Db class
- add 'Create' button to accounts page
When creating a multiline commit message, use a multiline string:
git commit -m "Add 'create account' functionality
- add POST /account endpoint and `createAccount` method to Db class
- add 'Create' button to accounts page"