commit
スター12
フォーク1
更新日2026年4月1日 13:32
Create a well-formatted git commit following project conventions
インストール
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SKILL.md
readonlyメニュー
Create a well-formatted git commit following project conventions
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | commit |
| description | Create a well-formatted git commit following project conventions |
Create a well-formatted git commit.
git status
git diff --staged
If nothing is staged, ask what should be committed
Run tests and clippy before committing:
cargo test
cargo clippy -- -D warnings
Write a commit message following conventional commits:
feat: new featurefix: bug fixrefactor: code refactoringtest: adding testsdocs: documentationchore: maintenanceCreate the commit:
git commit -m "type: description"
Note: Do NOT add Co-Authored-By lines (per project conventions).
git log -1$ARGUMENTS
Validate the user's design for a GitHub issue — challenge, formalize, and document
Formalize the user's ideas into documentation — Mermaid diagrams, rustdoc, README, issues
Review a GitHub pull request for code quality, correctness, and test coverage