一键导入
commit
Create a commit following this project's conventional commit guidelines.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create a commit following this project's conventional commit guidelines.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Generate or update the CHANGELOG.md Unreleased section from commits since the latest release tag.
Format and lint the project, auditing changed Rust files against code style guidelines.
Senior Rust code reviewer. Use proactively after implementing features to review for correctness, safety, performance, and best practices.
Write Architecture Decision Records (ADRs) and technical documentation. Use when documenting design decisions, architectural choices, or technical specifications.
Profile Rust code for performance bottlenecks. Use when investigating slow performance, comparing implementations, or optimizing critical paths.
Run and analyze Rust tests. Use when running test suites, debugging test failures, or analyzing test coverage.
| name | commit |
| description | Create a commit following this project's conventional commit guidelines. |
Create a commit following this project's conventional commit guidelines.
Check if a .jj directory exists at the repository root.
.jj exists — use jj commandsgit commandsExamine the current changes to understand what will be committed.
jj:
jj diff
jj log -r @ --no-graph
git:
git status
git diff
git diff --staged
Also review recent commit messages to stay consistent with style:
jj:
jj log -r ..@ -n 10 --no-graph
git:
git log --oneline -10
Read and follow the commit conventions defined in docs/dev/commits.md.
Do NOT include Co-Authored-By trailers.
Present the drafted commit message to the user and wait for approval before committing.
jj:
jj commit -m "<message>"
git:
git add <specific files>
git commit -m "<message>"
When using git, prefer adding specific files by name rather than git add -A or git add ..
Confirm the commit was created successfully.
jj:
jj log -r @- --no-graph
git:
git log --oneline -1