with one click
commit
Stage and commit current changes with an auto-generated message
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Stage and commit current changes with an auto-generated message
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Suggest and apply a semver version bump based on commits since the last tag
Push current branch to remote origin
Scaffold a new Sharpy.Stdlib module (spy-sourced or handwritten C#) with all required files, conventions, docs, and tests
Implement a plan with a coordinated agent team
Run compiler or cross-language benchmarks and compare results
Regenerate C# snapshot tests and spy stdlib after intentional codegen changes
| name | commit |
| description | Stage and commit current changes with an auto-generated message |
| argument-hint | [optional commit message override] |
Commit current changes following the project's git commit conventions. Analyzes staged and unstaged changes, generates a descriptive commit message, and creates the commit.
Usage:
/commit — auto-generate commit message from changes/commit fix typo in TypeMapper — use the provided messageRun these in parallel:
git status — see all staged, unstaged, and untracked filesgit diff --cached — see staged changesgit diff — see unstaged changesgit log --oneline -5 — see recent commit message styleIf there are unstaged or untracked changes:
git add -A or git add ..env, credentials.json, etc.) — warn the user if such files are presentIf $ARGUMENTS is non-empty, use it as the commit message body.
If $ARGUMENTS is empty, analyze the staged diff and generate a message:
git log output (this repo uses conventional commits: feat:, fix:, refactor:, test:, chore:, docs:)git commit -m "$(cat <<'EOF'
<generated or provided message>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
EOF
)"
Run git status after the commit to confirm success. Report the commit hash.
--amend)/format manually