commit
Create a well-formatted git commit following project conventions
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Create a well-formatted git commit following project conventions
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
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
| 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