en un clic
commit
Create a commit with jj following project commit message style
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Create a commit with jj following project commit message style
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle SOC
Update CHANGELOG.md with recent changes following Keep a Changelog format
Prepare and publish a new crate release
Format code according to specified style guide
Write Architecture Decision Records (ADRs) and technical documentation. Use when documenting design decisions, architectural choices, or technical specifications.
Senior Rust code reviewer. Use proactively after implementing features to review for correctness, safety, performance, and best practices.
Analyze Rust dependencies for security, quality, and maintenance status. Use proactively to audit Cargo.toml, check for outdated crates, or evaluate new dependencies.
| name | commit |
| description | Create a commit with jj following project commit message style |
Current changes to commit:
!jj status
!jj diff --stat
Recent commit messages for style reference:
!jj log --limit 5 -T 'description ++ "\n---\n"'
Create a commit using jj commit following the project's commit message style.
Subject line:
Component typeBody (blank line after subject):
Simple addition:
Add `Matrix3` type for 3x3 matrix operations
Provides const-constructible 3x3 matrices with arithmetic operations,
determinant calculation, and matrix inversion for color space
transformations.
Feature with ADR reference:
Add chromatic adaptation transforms with feature gating
Introduces ChromaticAdaptationTransform for adapting colors between
illuminants. Includes Bradford, CAT02, CAT16, Von Kries, Sharp,
Fairchild, Hunt-Pointer-Estevez, and CMC CAT97/2000 transforms.
Components are feature-gated for compile-time optimization with
Bradford as the default. XYZ Scaling serves as an always-available
fallback.
See ADR-0002: Feature-Gated Components
Use heredoc for multi-line messages:
jj commit -m "$(cat <<'EOF'
Subject line here
Body paragraph here explaining the change.
- Bullet points if needed
- Another point
See ADR-NNNN: Title (if applicable)
EOF
)"