commit
Create a well-formatted git commit following project conventions
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Create a well-formatted git commit following project conventions
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
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