用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/dlt-hub/dlt --skill commit命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | commit |
| description | Stage changes and write a clean Conventional-Commit message that follows the repo's git rules |
| argument-hint | ["-- <optional subject hint or scope>"] |
Create a commit that follows .agents/rules/git-github.md. Invoke as /commit, or
use these steps whenever you are about to commit.
Parse $ARGUMENTS: anything after -- is an optional hint (a subject, a scope, or
"only the dashboard files") — guidance, not the literal message.
git status
git diff --staged
git diff
Decide what belongs in the commit. If nothing is staged, stage the relevant changes
with git add <paths> (or git add -A when everything belongs together). NEVER
stage secret-looking files (.env, *secrets.toml, credentials) — they are also
denied in settings.json.
Apply .agents/rules/git-github.md:
{type}: subject or {type}({scope}): subject — lowercase, imperative,
no trailing period. Types: feat, fix, docs, test, refactor, chore.Co-Authored-By, no "Generated with ..." trailers.git commit -m "$(cat <<'EOF'
fix(dashboard): keep the selector when no pipeline is selected
EOF
)"
git log -1 --format=%B
Verify it is a single Conventional-Commit subject (plus an optional why) with no footers. Do not push and do not amend pushed commits unless the user explicitly asks.