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 页面并帮你完成安装。
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
基于 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