一键导入
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
)"