用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/NVIDIA-NeMo/DataDesigner --skill commit命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | commit |
| description | Commit current changes with a clear, descriptive message |
| argument-hint | ["special instructions"] |
| disable-model-invocation | true |
| metadata | {"internal":true} |
Commit the current staged/unstaged changes with a well-crafted commit message.
$ARGUMENTS can be used for special instructions, such as:
Run these commands in parallel to understand the changes:
git status --porcelain (check for staged/unstaged changes)git diff --cached (what will be committed if there are staged changes)git diff (what's modified but not staged)git log -5 --oneline (to match existing commit style)Important checks:
git add -A (or ask user if they want to selectively stage)Review the diff to understand:
Subject line:
Body (if needed for complex changes):
Footer (if needed):
Fixes #123, Closes #456Simple change:
add user authentication endpoint
Change with body:
add rate limiting to public endpoints
- Implement token bucket algorithm
- Add configurable limits per endpoint
- Include rate limit headers in responses
Closes #234
Stage changes (if needed):
git add -A
Or stage specific files if user requested selective staging.
Create commit using HEREDOC for proper formatting:
git commit -m "$(cat <<'EOF'
<description>
<body if needed>
<footer if needed>
EOF
)"
Verify the commit was created:
git log -1 --oneline
Report the commit hash and message to the user.
git commit --amend (only if explicitly requested in arguments)Maintain the NeMo Data Designer Fern docs site under fern/. Use for any documentation change. Triggered by: "edit docs", "add doc page", "update docs", "rename page", "fix broken link", "add redirect", "preview docs", "publish docs", "regenerate notebooks", "update dev note", any request that touches `fern/`.
Perform a thorough code review of the current branch or a GitHub PR by number.
Search local Fern documentation for content related to a topic
基于 SOC 职业分类