一键导入
commit
Stage and commit changes with standardized format
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Stage and commit changes with standardized format
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Check CI status, analyze failures, and explain skips for a Dynamo PR
Launch Dynamo+SGLang servers from example scripts, send test traffic, and validate
Profile-driven performance optimization loop. Baseline, profile, optimize one thing, measure, repeat.
Start a debugging session with worklog file
Create and refine Linear projects through in-depth interviewing and exploration
Convert a Linear project into child tickets with verification steps
| name | commit |
| description | Stage and commit changes with standardized format |
| user-invocable | true |
| disable-model-invocation | true |
!git status --short
!git diff --stat
!git diff --cached --stat
Based on the git status and diff above:
Stage changes if not already staged:
Write commit message in this format:
<type>: <description>
Types:
fix: Bug fixfeat: New featurerefactor: Code restructuring (no behavior change)docs: Documentation onlytest: Adding/updating testschore: Build, config, tooling changesRules:
Commit without asking for confirmation. Use a HEREDOC for the message:
git commit -m "$(cat <<'EOF'
<type>: <description>
EOF
)"
Good:
fix: handle empty response in sglang backendfeat: add per-user rate limiting middlewarerefactor: extract token validation to separate moduledocs: update sglang disaggregation deployment guidechore: bump maturin version to 1.8Bad:
Fix bug (too vague, wrong case)Updated code (meaningless, past tense)WIP (not a complete commit)fix: fix the thing. (period, vague)