用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/ai-dynamo/aitune --skill aitune-commit命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | aitune-commit |
| description | Use when creating a git commit to ensure the message follows the Conventional Commits specification |
| license | Apache-2.0 |
git diff HEAD, git log --oneline, git status to understand the changesgit commit -m "...", unless the user explicitly asks for sign-off; then run git commit --signoff -m "..."git log origin/main..HEAD --oneline). Rules:
type(scope): description**MR title suggestion:** <title>Never ask the user to confirm the commit message. Commit directly once the message is selected.
Never offer multiple commit options or ask whether to split. Always produce a single message.
Never add sign-off unless the user explicitly asks for it. Organization members are exempt from DCO sign-off; non-members should request sign-off explicitly.
Never run git push. Pushing is a manual step for the user.
<type>(<scope>): <description>
[optional body]
[optional footer(s)]
| Type | When to use |
|---|---|
feat | New feature |
fix | Bug fix |
chore | Maintenance, deps, tooling (no prod code change) |
docs | Documentation only |
refactor | Code change that is neither fix nor feature |
test | Adding or fixing tests |
perf | Performance improvement |
ci | CI/CD configuration changes |
revert | Revert a previous commit |
feat(auth):)git commit --signoff add the footer! after type/scope (feat!:)BREAKING CHANGE: footer only if ! alone is insufficientfeat(plan): add diffusers benchmark group
fix(ci): correct needs dependency in generate job
chore: update aitune-benchmarks to main branch
docs: add plan file format to CLAUDE.md
refactor(builds): consolidate hub Dockerfiles
feat!: rename platform key for Colossus GPU
BREAKING CHANGE: platform key changed from RTX-PRO-6000 to RTX-PRO-6000-MAXQ-PCIE-96GB-Colossus
fix: Fixed the bug → should be fix: fix the bug (imperative, lowercase)feat: add new feature. → no trailing periodupdate: something → update is not a valid type; use chore or refactor