ワンクリックで
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)