원클릭으로
commit
Create a commit with jj following project commit message style
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create a commit with jj following project commit message style
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
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
)"