con un clic
commit
Stage and commit changes with standardized format
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Stage and commit changes with standardized format
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional 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)