ワンクリックで
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"